From 95dba0dee7e5fc919d89d81cbfc48e2f909aa926 Mon Sep 17 00:00:00 2001 From: chrysn Date: Fri, 5 Apr 2019 19:08:26 +0200 Subject: [PATCH] box: raise NotImplementedError NotImplemented is a sentinel for comparisons; encountering this as an exception would result in a meta-error. --- boxes/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boxes/__init__.py b/boxes/__init__.py index 2182fd3..06e1354 100755 --- a/boxes/__init__.py +++ b/boxes/__init__.py @@ -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):