We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4429fe4 commit 3e4dd25Copy full SHA for 3e4dd25
src/stac_auth_proxy/filters/template.py
@@ -15,7 +15,7 @@ def Template(template_str: str, token_dependency: Callable[..., Any]):
15
16
async def dependency(
17
request: Request,
18
- auth_token=Annotated[dict[str, Any], Security(token_dependency)],
+ auth_token: Annotated[dict[str, Any], Security(token_dependency)],
19
) -> Expr:
20
"""Render a CQL2 filter expression with the request and auth token."""
21
# TODO: How to handle the case where auth_token is null?
0 commit comments