pylint-errors

E0711 (notimplemented-raised)

:x: Problematic code:

class Foo:
    def bar(self):
        raise NotImplemented

:heavy_check_mark: Correct code:

class Foo:
    def bar(self):
        raise NotImplementedError

Rationale:

Used when NotImplemented is raised instead of NotImplementedError.