Add missed ChatPermissions to __all__ (#393)

* new: add missed ChatPermissions to __all__

* ref: standardize all __all__
This commit is contained in:
Ramzan Bekbulatov 2020-09-13 22:14:33 +03:00 committed by GitHub
parent 7f053412bf
commit 5b40a2b8cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 30 additions and 29 deletions

View file

@ -2,8 +2,8 @@ from . import api
from .base import BaseBot
from .bot import Bot
__all__ = [
__all__ = (
'BaseBot',
'Bot',
'api'
]
'api',
)