pylint-errors

E1306 (too-few-format-args)

:x: Problematic code:

print('{} {}'.format('hello'))

:heavy_check_mark: Correct code:

print('{}'.format('hello'))

Rationale:

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