Skip to content

Commit

Permalink
Fix type of project id
Browse files Browse the repository at this point in the history
/projects/{project_id} GET endpoint was erroring out due to a type mismatch
  • Loading branch information
dmtrek14 committed Oct 11, 2023
1 parent 3150753 commit f2986fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/schemas/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


class Project(BaseModel):
id: str
id: int
is_active: bool
init: Optional[date] = None
end: Optional[date] = None
Expand Down

0 comments on commit f2986fc

Please sign in to comment.