pylint-errors

E1300 (bad-format-character)

:x: Problematic code:

print('%s %z' % ('hello', 'world'))

:heavy_check_mark: Correct code:

print('%s %s' % ('hello', 'world'))

Rationale:

Used when an unsupported format character is used in a format string.