From 47ab5d653dfed2e7a77ed0d949769b11a36bd64d Mon Sep 17 00:00:00 2001 From: ZeroN <128647503+OnaZeroN@users.noreply.github.com> Date: Sun, 22 Oct 2023 01:37:34 +0500 Subject: [PATCH] Update base.py --- aiogram/fsm/storage/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiogram/fsm/storage/base.py b/aiogram/fsm/storage/base.py index 5dfc8a18..52cb62f2 100644 --- a/aiogram/fsm/storage/base.py +++ b/aiogram/fsm/storage/base.py @@ -14,7 +14,7 @@ DEFAULT_DESTINY = "default" class StorageKey: bot_id: int chat_id: int - user_id: int + user_id: int thread_id: Optional[int] = None destiny: str = DEFAULT_DESTINY