mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
Add __all__ for better enums suggestions (#1126)
This commit is contained in:
parent
c98963973e
commit
1b02a6a148
1 changed files with 17 additions and 0 deletions
|
|
@ -30,3 +30,20 @@ from .parse_mode import ParseMode
|
|||
from .poll_type import PollType
|
||||
from .sent_code_type import SentCodeType
|
||||
from .user_status import UserStatus
|
||||
|
||||
__all__ = [
|
||||
'ChatAction',
|
||||
'ChatEventAction',
|
||||
'ChatMemberStatus',
|
||||
'ChatMembersFilter',
|
||||
'ChatType',
|
||||
'MessageEntityType',
|
||||
'MessageMediaType',
|
||||
'MessageServiceType',
|
||||
'MessagesFilter',
|
||||
'NextCodeType',
|
||||
'ParseMode',
|
||||
'PollType',
|
||||
'SentCodeType',
|
||||
'UserStatus'
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in a new issue