mirror of
https://github.com/pyrogram/pyrogram
synced 2025-08-28 21:07:59 +00:00
PhotoSize won't store date info anymore
This commit is contained in:
parent
5f87bbc962
commit
971299f592
@ -32,18 +32,14 @@ class PhotoSize(Object):
|
||||
height (``int``):
|
||||
Photo height.
|
||||
|
||||
file_size (``int``, *optional*):
|
||||
file_size (``int``):
|
||||
File size.
|
||||
|
||||
date (``int``, *optional*):
|
||||
Date the photo was sent in Unix time
|
||||
"""
|
||||
|
||||
ID = 0xb0700005
|
||||
|
||||
def __init__(self, file_id, width, height, file_size=None, date=None):
|
||||
self.file_id = file_id # string
|
||||
self.width = width # int
|
||||
self.height = height # int
|
||||
self.file_size = file_size # flags.0?int
|
||||
self.date = date
|
||||
def __init__(self, file_id: str, width: int, height: int, file_size: int):
|
||||
self.file_id = file_id
|
||||
self.width = width
|
||||
self.height = height
|
||||
self.file_size = file_size
|
||||
|
Loading…
x
Reference in New Issue
Block a user