Fix method signatures for generated classes

This commit is contained in:
Dan 2017-12-06 19:31:30 +01:00
parent 055367fe9c
commit fb4ae4b17e

View File

@ -12,7 +12,7 @@ class {class_name}(Object):
{fields}
@staticmethod
def read(b: BytesIO) -> "{class_name}":
def read(b: BytesIO, *args) -> "{class_name}":
{read_flags}
{read_types}
return {class_name}({return_arguments})