Skip to content

Commit

Permalink
Change raise NotImplemented to raise NotImplementedError (donnemartin…
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored and donnemartin committed Dec 27, 2019
1 parent eaa447c commit e50f269
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __init__(self, employee_id, name):
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):
Expand Down

0 comments on commit e50f269

Please sign in to comment.