pylint-errors

C0102 (blacklisted-name)

:x: Problematic code:

def foo():
    pass

:heavy_check_mark: Correct code:

def get_something():
    pass

Rationale:

Used when the name is listed in the black list (unauthorized names).