Skip to content

Commit 0068eba

Browse files
Update dependencies.py
1 parent 57f2564 commit 0068eba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ContentProcessorAPI/app/dependencies.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
from fastapi import Header, HTTPException
77

88

9-
### Placeholder for the actual implementation
9+
# Placeholder for the actual implementation
1010
async def get_token_header(x_token: Annotated[str, Header()]):
1111
"""it should be registered in the app as a dependency"""
1212
pass
1313
raise HTTPException(status_code=400, detail="X-Token header invalid")
1414

1515

16-
### Placeholder for the actual implementation
16+
# Placeholder for the actual implementation
1717
async def get_query_token(token: str):
1818
"""it should be registered in the app as a dependency"""
1919
pass

0 commit comments

Comments
 (0)