Skip to content

Commit

Permalink
Add __all__ for better enums suggestions (#1126)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertEinsteinTG committed Nov 13, 2022
1 parent c989639 commit 1b02a6a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pyrogram/enums/__init__.py
Expand Up @@ -30,3 +30,20 @@
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'
]

0 comments on commit 1b02a6a

Please sign in to comment.