mirror of
https://github.com/donnemartin/system-design-primer.git
synced 2025-07-18 16:31:31 +03:00
Convert all .py files to be valid Python (#98)
This commit is contained in:
@@ -112,6 +112,11 @@ class CallCenter(object):
|
||||
return employee
|
||||
return None
|
||||
|
||||
def notify_call_escalated(self, call): # ...
|
||||
def notify_call_completed(self, call): # ...
|
||||
def dispatch_queued_call_to_newly_freed_employee(self, call, employee): # ...
|
||||
def notify_call_escalated(self, call):
|
||||
pass
|
||||
|
||||
def notify_call_completed(self, call):
|
||||
pass
|
||||
|
||||
def dispatch_queued_call_to_newly_freed_employee(self, call, employee):
|
||||
pass
|
||||
|
Reference in New Issue
Block a user