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 Sudip Bhandari committed Jul 8, 2020
1 parent ccc18c3 commit 93e19f4
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 93e19f4

Please sign in to comment.