pylint-errors

W0311 (bad-indentation)

:x: Problematic code:

if input():
   print('yes')

:heavy_check_mark: Correct code:

if input():
    print('yes')

Rationale:

Used when an unexpected number of indentation’s tabulations or spaces has been found.