ruff/resources/test/fixtures/F601.py
2022-09-07 12:57:50 -04:00

12 lines
144 B
Python

x = {
"a": 1,
"a": 2,
"b": 3,
("a", "b"): 3,
("a", "b"): 4,
1.0: 2,
1: 0,
1: 3,
b"123": 1,
b"123": 4,
}