api: fix typo that prevented openapi generation

This commit is contained in:
lilly 2026-05-14 16:50:57 +02:00
commit 188002b3f3
Signed by: lilly
SSH key fingerprint: SHA256:y9T5GFw2A20WVklhetIxG1+kcg/Ce0shnQmbu1LQ37g

View file

@ -240,7 +240,7 @@ async def list_locks(ccujack: deps.CCUJackClient) -> List[models.Lock]:
tags=["locks"],
responses={
status.HTTP_401_UNAUTHORIZED: {"model": models.HttpProblemDetail},
status.HTTP_403_FORBIDDEN: {"models": models.HttpProblemDetail},
status.HTTP_403_FORBIDDEN: {"model": models.HttpProblemDetail},
status.HTTP_404_NOT_FOUND: {"model": models.HttpProblemDetail},
},
)