Fixed table_abc

This commit is contained in:
Sven Heidemann 2021-12-07 16:06:20 +01:00
parent ce77d41246
commit 21f50f3b24

View File

@ -22,10 +22,6 @@ class TableABC(ABC):
def modified_at(self, value: datetime):
self._modified_at = value
@staticmethod
@abstractmethod
def get_create_string() -> str: pass
@property
@abstractmethod
def insert_string(self) -> str: pass