Create change log

This commit is contained in:
dsodx 2023-06-04 15:23:36 +03:00
parent 7c2c190ddc
commit 5b392912a1

16
CHANGES/1188.feature.rst Normal file
View file

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