Files
ruff/resources/test/fixtures/flake8_comprehensions/C406.py
2022-12-01 13:33:33 -05:00

6 lines
81 B
Python

d1 = dict([(1, 2)])
d2 = dict(((1, 2),))
d3 = dict([])
d4 = dict(())
d5 = dict()