Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 370 Bytes

unused-format-string-argument.md

File metadata and controls

11 lines (6 loc) · 370 Bytes

Pattern: Unused format string argument

Issue: -

Description

Used when a PEP 3101 format string that uses named fields is used with an argument that is not required by the format string. This message can't be emitted when using Python < 2.7.

Further Reading