pylint-errors

C0321 (multiple-statements)

:x: Problematic code:

import pdb; pdb.set_trace()

:heavy_check_mark: Correct code:

import pdb
pdb.set_trace()

Rationale:

Used when more than on statement are found on the same line.