From afe96fc9098b01fe6b715baa34b474a9914e3805 Mon Sep 17 00:00:00 2001 From: Untone Date: Tue, 19 Dec 2023 17:30:27 +0300 Subject: [PATCH] double-debug --- services/core.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/services/core.py b/services/core.py index 2379e05..0b1babc 100644 --- a/services/core.py +++ b/services/core.py @@ -37,6 +37,9 @@ async def get_all_authors() -> List[ChatMember]: authors = await _request_endpoint(query_name, gql) for a in authors: + if a["user"] in authors_by_user: + print("DOUBLE DOUBLE") + print(a) authors_by_user[a["user"]] = a authors_by_id[a["id"]] = a