From cf56fe80215ed70e0e837f8bdf38c5cd6d79b9c1 Mon Sep 17 00:00:00 2001 From: ZeroN <128647503+OnaZeroN@users.noreply.github.com> Date: Sat, 21 Oct 2023 01:08:48 +0500 Subject: [PATCH] Update strategy.py --- aiogram/fsm/strategy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiogram/fsm/strategy.py b/aiogram/fsm/strategy.py index 9c14eeb2..6eb428ff 100644 --- a/aiogram/fsm/strategy.py +++ b/aiogram/fsm/strategy.py @@ -14,7 +14,7 @@ def apply_strategy( chat_id: int, user_id: int, thread_id: Optional[int] = None, -) -> Tuple[int, int, Optional[int]]: +) -> Tuple[int, Optional[int], Optional[int]]: if strategy == FSMStrategy.CHAT: return chat_id, chat_id, None if strategy == FSMStrategy.GLOBAL_USER: