pylint-errors

W1303 (missing-format-argument-key)

:x: Problematic code:

print('{one} {two}'.format(one='hello'))

:heavy_check_mark: Correct code:

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

Rationale:

Used when a PEP 3101 format string that uses named fields doesn’t receive one or more required keywords.