Back to Intellij Community

PyStringFormatInspection

python/python-psi-impl/resources/inspectionDescriptions/PyStringFormatInspection.html

2025.3-rc-2332 B
Original Source

Reports errors in string formatting operations.

Example 1:

"Hello {1}".format("people")

Example 2:

def bar():
    return 1

"%s %s" % bar()

As a fix, you need to rewrite string formatting fragments to adhere to the formatting syntax.