From e94da1f536ee47da149084f1197c2e63d7494e41 Mon Sep 17 00:00:00 2001 From: tonyrewin Date: Mon, 13 Feb 2023 18:03:09 +0300 Subject: [PATCH] minorfixes --- orm/reaction.py | 4 ++-- resolvers/create/editor.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/orm/reaction.py b/orm/reaction.py index 3ff769cd..1c129e23 100644 --- a/orm/reaction.py +++ b/orm/reaction.py @@ -19,8 +19,8 @@ class ReactionKind(Enumeration): REJECT = 0 # -1 LIKE = 11 # +1 DISLIKE = 12 # -1 - REMARK = 13 # 0 - FOOTNOTE = 14 # 0 + REMARK = 13 # 0 + FOOTNOTE = 14 # 0 # TYPE = # rating diff diff --git a/resolvers/create/editor.py b/resolvers/create/editor.py index 583a5caf..98283b30 100644 --- a/resolvers/create/editor.py +++ b/resolvers/create/editor.py @@ -12,9 +12,9 @@ from orm.topic import TopicFollower, Topic from orm.user import User from resolvers.zine.reactions import reactions_follow, reactions_unfollow from services.zine.gittask import GitTask -from resolvers.inbox.chats import create_chat -from services.inbox.storage import MessagesStorage -from orm.draft import DraftCollab +# from resolvers.inbox.chats import create_chat +# from services.inbox.storage import MessagesStorage +# from orm.draft import DraftCollab @mutation.field("createShout")