Always raise instances of NotImplementedError
This commit is contained in:
parent
cbd084283d
commit
e2ac8687c6
3 changed files with 4 additions and 6 deletions
|
|
@ -216,7 +216,7 @@ class CapContact(Capability):
|
|||
:type id: str
|
||||
:rtype: unicode
|
||||
"""
|
||||
raise NotImplementedError
|
||||
raise NotImplementedError()
|
||||
|
||||
def save_notes(self, id, notes):
|
||||
"""
|
||||
|
|
@ -226,4 +226,4 @@ class CapContact(Capability):
|
|||
:type id: str
|
||||
:returns: the unicode object to save as notes
|
||||
"""
|
||||
raise NotImplementedError
|
||||
raise NotImplementedError()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue