mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
6 lines
210 B
Python
6 lines
210 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
|
|
(''
|
|
.format(x=2)) # F522
|