Skip to content

Commit

Permalink
Move type hint to where it matters
Browse files Browse the repository at this point in the history
  • Loading branch information
wsanchez committed Nov 25, 2024
1 parent 29a4df9 commit 9ecf249
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ims/auth/_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,8 @@ async def authorizeRequest(
self.authenticateRequest(request)

userAuthorizations = await self.authorizationsForUser(
request.user,
eventID, # type: ignore[attr-defined]
request.user, # type: ignore[attr-defined]
eventID,
)
request.authorizations = ( # type: ignore[attr-defined]
userAuthorizations
Expand Down

0 comments on commit 9ecf249

Please sign in to comment.