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 +..