diff --git a/aiogram/types/base.py b/aiogram/types/base.py index 21050d8f..33eeb762 100644 --- a/aiogram/types/base.py +++ b/aiogram/types/base.py @@ -1,7 +1,14 @@ from __future__ import annotations -__all__ = ['MetaTelegramObject', 'TelegramObject', 'InputFile', 'String', - 'Integer', 'Float', 'Boolean'] +__all__ = [ + 'Boolean', + 'Float', + 'InputFile', + 'Integer', + 'MetaTelegramObject', + 'String', + 'TelegramObject', +] import io import logging