ruff/crates/ruff_linter/resources/test/fixtures/pycodestyle/E24.py
2023-09-20 08:38:27 +02:00

13 lines
216 B
Python

#: E241
a = (1, 2)
#: Okay
b = (1, 20)
#: E242
a = (1, 2) # tab before 2
#: Okay
b = (1, 20) # space before 20
#: E241 E241 E241
# issue 135
more_spaces = [a, b,
ef, +h,
c, -d]