Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
WillNilges committed Aug 27, 2023
1 parent 3fb432b commit d3e3331
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions models/building.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class BuildingStatusEnum(Enum):
Active = "Active"
Inactive = "Inactive"


class building(Base):
__tablename__ = "buildings"

Expand Down
2 changes: 2 additions & 0 deletions models/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@
import datetime
from models.baseModel import Base


class RequestStatusEnum(Enum):
Open = "Open"
Closed = "Closed"
Installed = "Installed"


class request(Base):
__tablename__ = "requests"

Expand Down

0 comments on commit d3e3331

Please sign in to comment.