mirror of
https://github.com/donnemartin/system-design-primer.git
synced 2025-12-18 10:58:56 +03:00
Convert all .py files to be valid Python
`raise NotImplementedError('Please replace this line with your code...')` signals to the user where they need to put their code.
This approach enables the codebase to be tested with lint tools like flake8, pyflakes, pylint, etc.
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