Fix trailing commas breaking older Python versions

This commit is contained in:
Dan 2019-06-07 18:51:04 +02:00
parent c65e210c03
commit e63b915ec2
4 changed files with 4 additions and 4 deletions

View File

@ -72,7 +72,7 @@ class Animation(Object):
mime_type: str = None,
file_size: int = None,
date: int = None,
thumbs: List[Thumbnail] = None,
thumbs: List[Thumbnail] = None
):
super().__init__(client)

View File

@ -74,7 +74,7 @@ class Audio(Object):
date: int = None,
performer: str = None,
title: str = None,
thumbs: List[Thumbnail] = None,
thumbs: List[Thumbnail] = None
):
super().__init__(client)

View File

@ -60,7 +60,7 @@ class Document(Object):
mime_type: str = None,
file_size: int = None,
date: int = None,
thumbs: List[Thumbnail] = None,
thumbs: List[Thumbnail] = None
):
super().__init__(client)

View File

@ -35,7 +35,7 @@ class StrippedThumbnail(Object):
self,
*,
client: "pyrogram.BaseClient" = None,
data: bytes,
data: bytes
):
super().__init__(client)