percent-format-expected-mapping (F502)
Derived from the Pyflakes linter.
What it does
Checks for named placeholders in printf
-style format strings without
mapping-type values.
Why is this bad?
When using named placeholders in printf
-style format strings, the values
must be a map type (such as a dictionary). Otherwise, the expression will
raise a TypeError
.
Example
Use instead:
Or: