depfix
All checks were successful
Deploy to core / deploy (push) Successful in 2m18s

This commit is contained in:
Untone 2024-02-19 12:49:33 +03:00
parent add5f6df63
commit a39db6991c
2 changed files with 3 additions and 2 deletions

View File

@ -20,6 +20,7 @@ granian = "^1.0.1"
google-analytics-data = "^0.18.3" google-analytics-data = "^0.18.3"
opensearch-py = "^2.4.2" opensearch-py = "^2.4.2"
httpx = "^0.26.0" httpx = "^0.26.0"
dogpile-cache = "^1.3.1"
[tool.poetry.group.dev.dependencies] [tool.poetry.group.dev.dependencies]
ruff = "^0.2.1" ruff = "^0.2.1"

View File

@ -1,8 +1,8 @@
import logging import logging
from functools import wraps 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 starlette.exceptions import HTTPException
from settings import ADMIN_SECRET, AUTH_URL from settings import ADMIN_SECRET, AUTH_URL