Skip to content

Commit

Permalink
Correct diverse mistakes:
Browse files Browse the repository at this point in the history
- wrong operator changes
- adjust some format choices and line lengths
  • Loading branch information
madeddy committed Apr 4, 2024
1 parent e8c1619 commit 7f1d0e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion decompiler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ def __init__(self, out_file, options):

def advance_to_line(self, linenumber):
self.last_lines_behind = max(
self.linenumber + (0 if self.skip_indent_until_write else 1) - linenumber, 0)
self.linenumber + (0 if self.skip_indent_until_write else 1) - linenumber, 0
)
self.most_lines_behind = max(self.last_lines_behind, self.most_lines_behind)
super(Decompiler, self).advance_to_line(linenumber)

Expand Down

0 comments on commit 7f1d0e7

Please sign in to comment.