Skip to content

Commit

Permalink
Fixup variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
huangsam committed Oct 25, 2024
1 parent 2f55a23 commit c2a6ca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ultimatepython/syntax/variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def main():
# We can use underscores (literal `_`) to separate digit groups in
# integer literals
assert 10_000 == 10000
assert 0x01_0f_2c == 69_420
assert 0x01_0F_2C == 69_420
assert 3.456_290e-1 == 0.3_456_290

# There is also a special literal called None. This literal is used to
Expand Down

0 comments on commit c2a6ca1

Please sign in to comment.