pylint-errors

E1304 (missing-format-string-key)

:x: Problematic code:

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

:heavy_check_mark: Correct code:

print('{one} {}'.format('world', one='hello'))

Rationale:

Used when a format string that uses named conversion specifiers is used with a dictionary that doesn’t contain all the keys required by the format string.