mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
18 lines
329 B
Python
18 lines
329 B
Python
# Should change
|
|
foo, bar, baz = [fn(x) for x in items]
|
|
|
|
foo, bar, baz =[fn(x) for x in items]
|
|
|
|
foo, bar, baz = [fn(x) for x in items]
|
|
|
|
foo, bar, baz = [[i for i in fn(x)] for x in items]
|
|
|
|
foo, bar, baz = [
|
|
fn(x)
|
|
for x in items
|
|
]
|
|
|
|
# Should not change
|
|
foo = [fn(x) for x in items]
|
|
|
|
x, = [await foo for foo in bar]
|