1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00

Fix typo.

This commit is contained in:
eternnoir 2017-04-30 19:40:27 +08:00
parent 4fc83a85ee
commit 450ef42a83

View File

@ -865,7 +865,7 @@ class InputLocationMessageContent(Dictionaryable):
self.longitude = longitude self.longitude = longitude
def to_dic(self): def to_dic(self):
json_dic = {'latitude': self.latitudet, 'longitude': self.longitude} json_dic = {'latitude': self.latitude, 'longitude': self.longitude}
return json_dic return json_dic