mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-16 12:51:18 +00:00
Clean up GIF and Location comments
This commit is contained in:
parent
5d9e2f7d7a
commit
62f575d53f
@ -65,12 +65,12 @@ class GIF(Object):
|
||||
file_size: int = None,
|
||||
date: int = None
|
||||
):
|
||||
self.file_id = file_id # string
|
||||
self.thumb = thumb # flags.0?PhotoSize
|
||||
self.file_name = file_name # flags.1?string
|
||||
self.mime_type = mime_type # flags.2?string
|
||||
self.file_size = file_size # flags.3?int
|
||||
self.date = date # flags.4?int
|
||||
self.width = width # int
|
||||
self.height = height # int
|
||||
self.duration = duration # int
|
||||
self.file_id = file_id
|
||||
self.thumb = thumb
|
||||
self.file_name = file_name
|
||||
self.mime_type = mime_type
|
||||
self.file_size = file_size
|
||||
self.date = date
|
||||
self.width = width
|
||||
self.height = height
|
||||
self.duration = duration
|
||||
|
@ -33,5 +33,5 @@ class Location(Object):
|
||||
ID = 0xb0700012
|
||||
|
||||
def __init__(self, longitude: float, latitude: float):
|
||||
self.longitude = longitude # double
|
||||
self.latitude = latitude # double
|
||||
self.longitude = longitude
|
||||
self.latitude = latitude
|
||||
|
Loading…
Reference in New Issue
Block a user