From 7c18c87b9551bb75c6e23eb02caecd80a73593f1 Mon Sep 17 00:00:00 2001 From: Rishat Fayzullin Date: Tue, 12 Mar 2024 17:35:15 +0300 Subject: [PATCH] Refactoring while review --- 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 a3f3f976..2309b10a 100644 --- a/aiogram/fsm/storage/base.py +++ b/aiogram/fsm/storage/base.py @@ -25,7 +25,7 @@ class KeyBuilder(ABC): @abstractmethod def build(self, key: StorageKey, part: Literal["data", "state", "lock"]) -> str: """ - This method should be implemented in subclasses + Build key to be used in storage's db queries :param key: contextual key :param part: part of the record