Merge pull request 'fix: add type annotations to untyped query parameters (#73)' (#86) from issue/73-add-type-annotations-to-untyped-query-parameters into main
This commit is contained in:
commit
41fe4f6ce2
@ -87,7 +87,7 @@ async def get_team_standings(team_id: int):
|
||||
@router.patch("/{stan_id}", include_in_schema=PRIVATE_IN_SCHEMA)
|
||||
@handle_db_errors
|
||||
async def patch_standings(
|
||||
stan_id,
|
||||
stan_id: int,
|
||||
wins: Optional[int] = None,
|
||||
losses: Optional[int] = None,
|
||||
token: str = Depends(oauth2_scheme),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user