Update message.py (#466)

Added DICE to ContentTypes
This commit is contained in:
Forden 2020-11-15 21:19:08 +03:00 committed by GitHub
parent ae7b250e33
commit 2cf6b22a69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2901,6 +2901,8 @@ class ContentType(helper.Helper):
:key: CONTACT
:key: LOCATION
:key: VENUE
:key: POLL
:key: DICE
:key: NEW_CHAT_MEMBERS
:key: LEFT_CHAT_MEMBER
:key: INVOICE
@ -2966,6 +2968,8 @@ class ContentTypes(helper.Helper):
:key: CONTACT
:key: LOCATION
:key: VENUE
:key: POLL
:key: DICE
:key: NEW_CHAT_MEMBERS
:key: LEFT_CHAT_MEMBER
:key: INVOICE
@ -2992,6 +2996,8 @@ class ContentTypes(helper.Helper):
CONTACT = helper.ListItem() # contact
LOCATION = helper.ListItem() # location
VENUE = helper.ListItem() # venue
POLL = helper.ListItem() # poll
DICE = helper.ListItem() # dice
NEW_CHAT_MEMBERS = helper.ListItem() # new_chat_member
LEFT_CHAT_MEMBER = helper.ListItem() # left_chat_member
INVOICE = helper.ListItem() # invoice
@ -3005,7 +3011,6 @@ class ContentTypes(helper.Helper):
DELETE_CHAT_PHOTO = helper.ListItem() # delete_chat_photo
GROUP_CHAT_CREATED = helper.ListItem() # group_chat_created
PASSPORT_DATA = helper.ListItem() # passport_data
POLL = helper.ListItem()
UNKNOWN = helper.ListItem() # unknown
ANY = helper.ListItem() # any