mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
7 lines
185 B
Python
7 lines
185 B
Python
"{} {}".format(1) # F524
|
|
"{2}".format() # F524
|
|
"{bar}".format() # F524
|
|
"{0} {bar}".format(1) # F524
|
|
"{0} {bar}".format() # F524
|
|
"{bar} {0}".format() # F524
|
|
"{1} {8}".format(0, 1)
|