.. _too-many-format-args: too-many-format-args / E1305 ============================ **Message emitted:** ``Too many arguments for format string`` **Description:** *Used when a format string that uses unnamed conversion specifiers is given too many arguments.* **Problematic code:** .. literalinclude:: /data/messages/t/too-many-format-args/bad.py :language: python **Correct code:** .. literalinclude:: /data/messages/t/too-many-format-args/good.py :language: python **Related links:** - `String Formmating `_ Created by the `string `__ checker.