Fixed typo
This commit is contained in:
parent
dcbcb67ce8
commit
01c7e155c3
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user