Skip to content

Commit

Permalink
[main] Hotfix: revert dto changes
Browse files Browse the repository at this point in the history
  • Loading branch information
NayeonKeum committed Sep 18, 2023
1 parent 485d88b commit 0e68a1b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion resources/images/control-ubuntu/server/res/Dto.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class AssignmentModel(BaseModel):
start_date: List[int]
due_date: List[int]
description: Optional[str]
answer: List[str]
answer: str
runtime: float


Expand Down
2 changes: 1 addition & 1 deletion resources/images/professor-ubuntu/server/res/Dto.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class AssignmentModel(BaseModel):
start_date: List[int]
due_date: List[int]
description: Optional[str]
answer: List[str]
answer: str
runtime: float


Expand Down
2 changes: 1 addition & 1 deletion resources/images/student-ubuntu/server/res/Dto.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class AssignmentModel(BaseModel):
start_date: List[int]
due_date: List[int]
description: Optional[str]
answer: List[str]
answer: str
runtime: float


Expand Down
2 changes: 1 addition & 1 deletion resources/res/Dto.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class AssignmentModel(BaseModel):
start_date: List[int]
due_date: List[int]
description: Optional[str]
answer: List[str]
answer: str
runtime: float


Expand Down

0 comments on commit 0e68a1b

Please sign in to comment.