diff --git a/pyproject.toml b/pyproject.toml index 057bf53f..a161dc7a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,7 @@ granian = "^1.0.1" google-analytics-data = "^0.18.3" opensearch-py = "^2.4.2" httpx = "^0.26.0" +dogpile-cache = "^1.3.1" [tool.poetry.group.dev.dependencies] ruff = "^0.2.1" diff --git a/services/auth.py b/services/auth.py index 71e0d2ef..34b1443f 100644 --- a/services/auth.py +++ b/services/auth.py @@ -1,8 +1,8 @@ import logging from functools import wraps -from dogpile.cache import make_region -import httpx +import httpx +from dogpile.cache import make_region from starlette.exceptions import HTTPException from settings import ADMIN_SECRET, AUTH_URL