pylint-errors

E1507 (invalid-envvar-value)

:x: Problematic code:

import os

os.getenv(1)

:heavy_check_mark: Correct code:

import os

os.getenv('1')

Rationale:

Env manipulation functions support only string type arguments.