Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
gitfresnel committed Sep 21, 2024
1 parent 9c6aa4c commit 1529804
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion userdata_api/routes/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
@user.get("/{id}", response_model=UserInfoGet)
async def get_user_info(
id: int,
additional_data: list[str] = Query(default=[]),
additional_data: list[int] = Query(default=[]),
user: dict[str, Any] = Depends(UnionAuth(scopes=[], allow_none=False, auto_error=True)),
) -> UserInfoGet:
"""
Expand Down

0 comments on commit 1529804

Please sign in to comment.