From 651178242dfd5f64e7112914a2d70e9e0a1d7f70 Mon Sep 17 00:00:00 2001 From: Oleg A Date: Wed, 6 Oct 2021 14:04:42 +0300 Subject: [PATCH] style: __all__ applied formatting --- aiogram/types/base.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) 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