aiogram/aiogram/bot/__init__.py
Ramzan Bekbulatov 5b40a2b8cf
Add missed ChatPermissions to __all__ (#393)
* new: add missed ChatPermissions to __all__

* ref: standardize all __all__
2020-09-13 22:14:33 +03:00

9 lines
117 B
Python

from . import api
from .base import BaseBot
from .bot import Bot
__all__ = (
'BaseBot',
'Bot',
'api',
)