2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-31 06:16:06 +00:00

Remove **kwargs for generated classes (function/types)

This commit is contained in:
Dan
2018-03-23 13:46:43 +01:00
parent 1d9bb18a38
commit ef71dcf56a
2 changed files with 34 additions and 15 deletions

View File

@@ -11,7 +11,7 @@ class {class_name}(Object):
"""
ID = {object_id}
def __init__(self{arguments}, **kwargs):
def __init__(self{arguments}):
{fields}
@staticmethod