We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f49d999 commit 12da793Copy full SHA for 12da793
stac_fastapi/api/stac_fastapi/api/app.py
@@ -373,7 +373,7 @@ async def ping():
373
self.app.include_router(mgmt_router, tags=["Liveliness/Readiness"])
374
375
def add_route_dependencies(
376
- self, scopes: List[Scope], dependencies=List[Depends]
+ self, scopes: List[Scope], dependencies: List[Depends]
377
) -> None:
378
"""Add custom dependencies to routes.
379
stac_fastapi/api/stac_fastapi/api/routes.py
@@ -88,7 +88,7 @@ class Scope(TypedDict, total=False):
88
89
90
91
- routes: List[BaseRoute], scopes: List[Scope], dependencies=List[params.Depends]
+ routes: List[BaseRoute], scopes: List[Scope], dependencies: List[params.Depends]
92
93
"""Add dependencies to routes.
94
0 commit comments