"...src/main/resources/template/admin/Controller.ftl" did not exist on "203c1d692c4f1b337d1fcf6159000a23221935c0"
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):
super(Operator, self).__init__(employee_id, name, Rank.DIRECTOR)
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):
......
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