mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
13 lines
216 B
Python
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]
|