mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-02 21:44:51 +00:00
Fix Document.date attribute being a tuple
Thanks Python...
This commit is contained in:
parent
0340271b33
commit
4ca87682af
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@ class Document(PyrogramType):
|
|||
self.file_name = file_name
|
||||
self.mime_type = mime_type
|
||||
self.file_size = file_size
|
||||
self.date = date,
|
||||
self.date = date
|
||||
self.thumbnails = thumbnails
|
||||
|
||||
@staticmethod
|
||||
|
|
|
|||
Loading…
Reference in a new issue