pylint-errors

E1305 (too-many-format-args)

:x: Problematic code:

print('{} {}'.format('hello', 'world', 'again'))

:heavy_check_mark: Correct code:

print('{} {} {}'.format('hello', 'world', 'again'))

Rationale:

Used when a format string that uses unnamed conversion specifiers is given too many arguments.