mirror of
https://github.com/donnemartin/system-design-primer.git
synced 2025-10-16 16:52:53 +03:00
Update super function argument
Change first parameters in in Supervisor and Director subclasses
This commit is contained in:
@@ -53,7 +53,7 @@ class Operator(Employee):
|
||||
class Supervisor(Employee):
|
||||
|
||||
def __init__(self, employee_id, name):
|
||||
super(Operator, self).__init__(employee_id, name, Rank.SUPERVISOR)
|
||||
super(Supervisor, self).__init__(employee_id, name, Rank.SUPERVISOR)
|
||||
|
||||
def escalate_call(self):
|
||||
self.call.level = Rank.DIRECTOR
|
||||
@@ -63,7 +63,7 @@ class Supervisor(Employee):
|
||||
class Director(Employee):
|
||||
|
||||
def __init__(self, employee_id, name):
|
||||
super(Operator, self).__init__(employee_id, name, Rank.DIRECTOR)
|
||||
super(Director, self).__init__(employee_id, name, Rank.DIRECTOR)
|
||||
|
||||
def escalate_call(self):
|
||||
raise NotImplementedError('Directors must be able to handle any call')
|
||||
|
Reference in New Issue
Block a user