mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-03 05:54:51 +00:00
PhotoSize won't store date info anymore
This commit is contained in:
parent
5f87bbc962
commit
971299f592
1 changed files with 6 additions and 10 deletions
|
|
@ -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…
Reference in a new issue