Fixed typo

This commit is contained in:
Sven Heidemann 2021-11-30 15:24:01 +01:00
parent dcbcb67ce8
commit 01c7e155c3

View File

@ -11,11 +11,11 @@ class TableABC(ABC):
self._modified_at: Optional[datetime] = None
@property
def CreatedAt(self) -> datetime:
def created_at(self) -> datetime:
return self._created_at
@property
def LastModifiedAt(self) -> datetime:
def modified_at(self) -> datetime:
return self._modified_at
@staticmethod