Files
ruff/resources/test/fixtures/flake8_comprehensions/C416.py
2022-12-01 13:33:33 -05: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]