Skip to content

Commit 3e4dd25

Browse files
committed
fix: correct annotation
1 parent 4429fe4 commit 3e4dd25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stac_auth_proxy/filters/template.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def Template(template_str: str, token_dependency: Callable[..., Any]):
1515

1616
async def dependency(
1717
request: Request,
18-
auth_token=Annotated[dict[str, Any], Security(token_dependency)],
18+
auth_token: Annotated[dict[str, Any], Security(token_dependency)],
1919
) -> Expr:
2020
"""Render a CQL2 filter expression with the request and auth token."""
2121
# TODO: How to handle the case where auth_token is null?

0 commit comments

Comments
 (0)