We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bac269d commit a5ed760Copy full SHA for a5ed760
telebot/types.py
@@ -492,7 +492,7 @@ class Venue(JsonDeserializable):
492
@classmethod
493
def de_json(cls, json_type):
494
obj = cls.check_json(json_type)
495
- location = obj['location']
+ location = Location.de_json(obj['location'])
496
title = obj['title']
497
address = obj['address']
498
foursquare_id = obj.get('foursquare_id')
0 commit comments