Skip to content

Commit

Permalink
Fix some issues from logs
Browse files Browse the repository at this point in the history
  • Loading branch information
quincylvania committed Oct 2, 2024
1 parent a64c3ca commit e812051
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions images/dashboard/src/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ kubernetes
fastapi_login
passlib
python-jose
python-dotenv
3 changes: 1 addition & 2 deletions images/dashboard/src/schemas/boxes.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ def validate_name(cls, value):
return value

class Config:
orm_mode = True
from_attributes = True


Expand Down Expand Up @@ -70,4 +69,4 @@ def from_orm(box: "Boxes") -> "BoxResponse":
return box_response

class Config:
orm_mode = True
from_attributes = True
2 changes: 1 addition & 1 deletion images/dashboard/src/schemas/sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ class SessionResponse(BaseModel):
created_at: datetime

class Config:
orm_mode = True
from_attributes = True

0 comments on commit e812051

Please sign in to comment.