diff --git a/resources/PsycopgResource.py b/resources/PsycopgResource.py index 655186a0..787dc623 100644 --- a/resources/PsycopgResource.py +++ b/resources/PsycopgResource.py @@ -48,15 +48,3 @@ def __init__(self, **kwargs): - kwargs (dict): Keyword arguments containing 'psycopg2_connection' for database connection. """ self.psycopg2_connection = kwargs["psycopg2_connection"] - - def get(self): - """ - Base implementation of GET. Override in subclasses as needed. - """ - raise NotImplementedError("This method should be overridden by subclasses") - - def post(self): - """ - Base implementation of POST. Override in subclasses as needed. - """ - raise NotImplementedError("This method should be overridden by subclasses")