Skip to content

Commit

Permalink
Style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DaymasS committed Nov 7, 2024
1 parent 4a8a4ea commit 909b6a8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions rating_api/routes/lecturer.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,7 @@ async def create_lecturer(


@lecturer.get("/{id}", response_model=LecturerGet)
async def get_lecturer(
id: int,
info: list[Literal["comments", "mark"]] = Query(default=[])
) -> LecturerGet:
async def get_lecturer(id: int, info: list[Literal["comments", "mark"]] = Query(default=[])) -> LecturerGet:
"""
Scopes: `["rating.lecturer.read"]`
Expand Down

0 comments on commit 909b6a8

Please sign in to comment.