Files
ruff/resources/test/fixtures/flake8_simplify/SIM118.py
2022-12-11 10:05:11 -05:00

13 lines
218 B
Python

key in dict.keys() # SIM118
foo["bar"] in dict.keys() # SIM118
foo() in dict.keys() # SIM118
for key in dict.keys(): # SIM118
pass
for key in list(dict.keys()):
if some_property(key):
del dict[key]