Skip to content

Commit

Permalink
Add missing method arg
Browse files Browse the repository at this point in the history
  • Loading branch information
disrupted committed Mar 5, 2024
1 parent 0abd7c4 commit 938a1b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keycloak_oauth/starlette_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ async def handle_auth_callback(self, request: Request) -> RedirectResponse:
return await self.keycloak.auth(request)

@login_not_required
async def public_keys(self) -> dict[str, Any]:
async def public_keys(self, request: Request) -> dict[str, Any]:
return await self.keycloak.public_keys()

def setup_admin(self, admin: BaseAdmin) -> None:
Expand Down

0 comments on commit 938a1b5

Please sign in to comment.