瀏覽代碼

Change raise NotImplemented to raise NotImplementedError (#345)

Christian Clauss 5 年之前
父節點
當前提交
e50f26960d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      solutions/object_oriented_design/call_center/call_center.py

+ 1 - 1
solutions/object_oriented_design/call_center/call_center.py

@@ -66,7 +66,7 @@ class Director(Employee):
         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):