string-dot-format-mixing-automatic (F525)
Added in v0.0.139 · Related issues · View source
Derived from the Pyflakes linter.
What it does
Checks for str.format calls that mix automatic and manual numbering.
Why is this bad?
In str.format calls, mixing automatic and manual numbering will raise a
ValueError at runtime.
Example
Use instead:
Or: