From 5b392912a1fe36c654c55557296ed71aafcfd485 Mon Sep 17 00:00:00 2001 From: dsodx Date: Sun, 4 Jun 2023 15:23:36 +0300 Subject: [PATCH] Create change log --- CHANGES/1188.feature.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 CHANGES/1188.feature.rst diff --git a/CHANGES/1188.feature.rst b/CHANGES/1188.feature.rst new file mode 100644 index 00000000..8a5cb8ab --- /dev/null +++ b/CHANGES/1188.feature.rst @@ -0,0 +1,16 @@ +Fill fsm/storage/__init.py__ and fsm/__init__.py to simplify imports. +For example use + +.. code-block:: Python + + from aiogram.fsm import RedisStorage, FSMContext, State +.. + +instead of + +.. code-block:: Python + + from aiogram.fsm.storage.redis import RedisStorage + from aiogram.fsm.context import FSMContext + from aiogram.fsm.state import State +..