Skip to content

Commit

Permalink
Merge pull request #2013 from fabihatasneem/Fixed_logical_expression
Browse files Browse the repository at this point in the history
Fixed Inappropriate Logical Expression
  • Loading branch information
jmcouffin committed Dec 1, 2023
2 parents 95278a5 + cd1aa9a commit f9a7bd2
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pyrevitlib/rpw/ui/forms/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,6 @@ def history_iter(self):
except IndexError:
if len(lines) == 0:
return None
if len(lines) < 0:
self.history_index += len(lines)
if len(lines) > 0:
self.history_index -= len(lines)
line = lines[0]
Expand Down

0 comments on commit f9a7bd2

Please sign in to comment.