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

5 lines
183 B
Python

"{}".format(1, bar=2) # F522
"{bar}{}".format(1, bar=2, spam=3) # F522
"{bar:{spam}}".format(bar=2, spam=3) # No issues
"{bar:{spam}}".format(bar=2, spam=3, eggs=4, ham=5) # F522