pylint-errors

C0301 (line-too-long)

:x: Problematic code:

print('###############################################################################################################')

:heavy_check_mark: Correct code:

print('#' * 120)

Rationale:

Used when a line is longer than a given number of characters.