box: raise NotImplementedError

NotImplemented is a sentinel for comparisons; encountering this as an
exception would result in a meta-error.
This commit is contained in:
chrysn 2019-04-05 19:08:26 +02:00 committed by Florian Festi
parent 83078d056f
commit 95dba0dee7
1 changed files with 1 additions and 1 deletions

View File

@ -526,7 +526,7 @@ class Boxes:
You will typically need to call .parseArgs() before calling this one"""
self.open()
# Change settings and creat new Edges and part classes here
raise NotImplemented
raise NotImplementedError
self.close()
def cc(self, callback, number, x=0.0, y=None):