Migrate to ruff

This commit is contained in:
2023-01-07 23:13:00 +01:00
parent 14e9347047
commit ce1010f590
14 changed files with 675 additions and 402 deletions

View File

@@ -1,11 +1,10 @@
from fastapi import FastAPI
from fastapi.responses import ORJSONResponse
from fastapi_pagination import add_pagination
from prometheus_fastapi_instrumentator import Instrumentator
from redis import asyncio as aioredis
from app.views import users_router, languages_router, healthcheck_router
from app.views import healthcheck_router, languages_router, users_router
from core.config import env_config
from core.db import database