Skip to content

Commit

Permalink
Fix indenting of a few comments
Browse files Browse the repository at this point in the history
  • Loading branch information
huangsam committed Oct 25, 2024
1 parent 868738c commit 40a9703
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ultimatepython/syntax/conditional.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ def main():
# `0 < x_add_two < 2` is equivalent to `x_add_two > 0 and x_add_two < 2`
ran_6 = False
if 0 < x_add_two < 2:
ran_6 = False # skip: if
ran_6 = False # skip: if
else:
ran_6 = True # run
ran_6 = True # run
assert ran_6 is True


Expand Down

0 comments on commit 40a9703

Please sign in to comment.