Skip to content

Commit

Permalink
fix typo for Auditable
Browse files Browse the repository at this point in the history
  • Loading branch information
jrycw committed Feb 23, 2024
1 parent 39ec3a6 commit 69d6d66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
################################
# Abstract
################################
class Auitable(BaseModel):
class Auditable(BaseModel):
created_at: datetime.datetime


Expand All @@ -30,7 +30,7 @@ class UserUpdate(UserCreate):
new_name: str


class UserFull(Auitable, UserID, UserBase):
class UserFull(Auditable, UserID, UserBase):
pass


Expand All @@ -57,7 +57,7 @@ class EventUpdate(EventCreate):
new_name: str


class EventFull(Auitable, EventID, EventCreate):
class EventFull(Auditable, EventID, EventCreate):
pass


Expand Down

0 comments on commit 69d6d66

Please sign in to comment.