From ec7ca42d11b84c7ad6d670274c2795847b14cfa2 Mon Sep 17 00:00:00 2001 From: ZeroN <128647503+OnaZeroN@users.noreply.github.com> Date: Sun, 22 Oct 2023 01:35:54 +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 c0dc1ee1..5dfc8a18 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: Optional[int] = None + user_id: int thread_id: Optional[int] = None destiny: str = DEFAULT_DESTINY