configured isort, black, flake8

This commit is contained in:
Igor Lobanov
2023-10-30 22:00:55 +01:00
parent 17c29c7f4f
commit 441bcc1e90
75 changed files with 2420 additions and 1730 deletions

View File

@@ -1,8 +1,8 @@
from graphql.error import GraphQLError
# TODO: remove traceback from logs for defined exceptions
class BaseHttpException(GraphQLError):
code = 500
message = "500 Server error"

View File

@@ -1,15 +1,13 @@
from typing import TypeVar, Any, Dict, Generic, Callable
from typing import Any, Callable, Dict, Generic, TypeVar
from sqlalchemy import create_engine, Column, Integer
from sqlalchemy import Column, Integer, create_engine
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import Session
from sqlalchemy.sql.schema import Table
from settings import DB_URL
engine = create_engine(
DB_URL, echo=False, pool_size=10, max_overflow=20
)
engine = create_engine(DB_URL, echo=False, pool_size=10, max_overflow=20)
T = TypeVar("T")
@@ -20,7 +18,10 @@ def local_session():
return Session(bind=engine, expire_on_commit=False)
class Base(declarative_base()):
DeclarativeBase = declarative_base() # type: Any
class Base(DeclarativeBase):
__table__: Table
__tablename__: str
__new__: Callable
@@ -29,7 +30,7 @@ class Base(declarative_base()):
__abstract__ = True
__table_args__ = {"extend_existing": True}
id = Column(Integer, primary_key=True)
id: Column | None = Column(Integer, primary_key=True)
def __init_subclass__(cls, **kwargs):
REGISTRY[cls.__name__] = cls
@@ -47,7 +48,7 @@ class Base(declarative_base()):
def update(self, input):
column_names = self.__table__.columns.keys()
for (name, value) in input.items():
for name, value in input.items():
if name in column_names:
setattr(self, name, value)

View File

@@ -1,5 +1,7 @@
from aioredis import from_url
from asyncio import sleep
from aioredis import from_url
from settings import REDIS_URL