Skip to content

Commit

Permalink
fix: rename module
Browse files Browse the repository at this point in the history
  • Loading branch information
ninoseki committed Mar 9, 2024
1 parent 28056f6 commit 1db97d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/api/endpoints/cache.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from fastapi import APIRouter, HTTPException, status

from backend import deps, settings
from backend import dependencies, settings

router = APIRouter()

Expand All @@ -11,7 +11,7 @@
summary="Get analysis cache keys",
description="Try to get analysis cache keys",
)
async def cache_keys(optional_redis: deps.OptionalRedis) -> list[str]:
async def cache_keys(optional_redis: dependencies.OptionalRedis) -> list[str]:
if optional_redis is None:
raise HTTPException(
status_code=status.HTTP_501_NOT_IMPLEMENTED,
Expand Down

0 comments on commit 1db97d2

Please sign in to comment.