pylint-errors

C0415 (import-outside-toplevel)

:x: Problematic code:

# to be addded

:heavy_check_mark: Correct code:

# to be added

Rationale:

Used when an import statement is used anywhere other than the module toplevel. Move this import to the top of the file.