pylint-errors

E1201 (logging-format-truncated)

:x: Problematic code:

logging.warning("Here is a variable: %", my_var)

:heavy_check_mark: Correct code:

logging.warning("Here is a variable: %s", my_var)

Rationale:

Used when a logging statement format string terminates before the end of a conversion specifier.