isort+authfix
All checks were successful
Deploy to core / deploy (push) Successful in 1m36s

This commit is contained in:
2024-02-19 14:45:55 +03:00
parent b89060f15f
commit 6d3c0ee39e
18 changed files with 57 additions and 27 deletions

View File

@@ -5,11 +5,11 @@ from sqlalchemy import and_, select
from sqlalchemy.orm import joinedload
from orm.author import Author
from orm.rating import is_negative, is_positive
from orm.reaction import Reaction, ReactionKind
from orm.shout import Shout, ShoutAuthor, ShoutTopic
from orm.topic import Topic
from resolvers.follower import reactions_follow, reactions_unfollow
from orm.rating import is_negative, is_positive
from services.auth import login_required
from services.db import local_session
from services.diff import apply_diff, get_diff
@@ -17,7 +17,6 @@ from services.notify import notify_shout
from services.schema import mutation, query
from services.search import search_service
logger = logging.getLogger('[resolver.editor]')
logger.setLevel(logging.DEBUG)