From 9f0eadd5507bbfc67da242843bfb4fc78aad1dba Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Sun, 21 Oct 2018 18:46:35 -0500 Subject: [PATCH] Fix NotImplemented Error typos --- src/pgwui_core/pgwui_core.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pgwui_core/pgwui_core.py b/src/pgwui_core/pgwui_core.py index 6b714b9..a09c16b 100644 --- a/src/pgwui_core/pgwui_core.py +++ b/src/pgwui_core/pgwui_core.py @@ -963,7 +963,7 @@ class DBData(object): Return a thunk which, when called, delivers the next object to go into the db. ''' - raise NotImpementedError() + raise NotImplementedError() class SQLData(DBData): @@ -1219,13 +1219,13 @@ class DBHandler(object): Return an instantiation of the upload form needed by the upload handler. ''' - raise NotImpliementedError + raise NotImplementedError def get_data(self): ''' Put something that will go into the db into the 'data' attribute. ''' - raise NotImplimentedError + raise NotImplementedError def val_input(self): ''' -- 2.34.1