Files
ruff/resources/test/fixtures/C416.py
Harutaka Kawamura 07ef3b8754 Implement C416 (#415)
2022-10-13 08:34:33 -04:00

7 lines
95 B
Python

x = [1, 2, 3]
[i for i in x]
{i for i in x}
[i for i in x if i > 1]
[i for i in x for j in x]