From 0436bcde4b76af01243791081efa55a7bcabe59c Mon Sep 17 00:00:00 2001 From: Sam Colwell Date: Sat, 12 Jan 2019 15:45:15 -0500 Subject: [PATCH] clean up comments and indentation --- py65/monitor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py65/monitor.py b/py65/monitor.py index 6ea44a4..57319b7 100644 --- a/py65/monitor.py +++ b/py65/monitor.py @@ -59,7 +59,7 @@ class Monitor(cmd.Cmd): # after processing commands and before exiting. console.save_mode(self.stdin) - # Check for any exceptions thrown during __init__ while\ + # Check for any exceptions thrown during __init__ while # processing the arguments. try: @@ -81,7 +81,7 @@ class Monitor(cmd.Cmd): physMask = self._mpu.memory.physMask reset = self._mpu.RESET & physMask dest = self._mpu.memory[reset] + \ - (self._mpu.memory[reset + 1] << self.byteWidth) + (self._mpu.memory[reset + 1] << self.byteWidth) self.do_goto("$%x" % dest) except: # Restore input mode on any exception and then rethrow the