Commit e50f2696 authored by Christian Clauss's avatar Christian Clauss Committed by Donne Martin
Browse files

Change raise NotImplemented to raise NotImplementedError (#345)

parent eaa447cc
...@@ -66,7 +66,7 @@ class Director(Employee): ...@@ -66,7 +66,7 @@ class Director(Employee):
super(Operator, self).__init__(employee_id, name, Rank.DIRECTOR) super(Operator, self).__init__(employee_id, name, Rank.DIRECTOR)
def escalate_call(self): def escalate_call(self):
raise NotImplemented('Directors must be able to handle any call') raise NotImplementedError('Directors must be able to handle any call')
class CallState(Enum): class CallState(Enum):
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment