pylint-errors

W0604 (global-at-module-level)

:x: Problematic code:

var = 1
global var

:heavy_check_mark: Correct code:

var = 1

Rationale:

Used when you use the global statement at the module level since it has no effect.