Fix errors reported by tools/check

This commit is contained in:
Lonami Exo
2024-10-19 23:04:15 +02:00
parent 4a591cee8a
commit edf3e06bd0
7 changed files with 36 additions and 8 deletions

View File

@@ -123,7 +123,12 @@ def main() -> None:
generated = ast.unparse(
ast.ClassDef(
name="Client", bases=[], keywords=[], body=class_body, decorator_list=[]
name="Client",
bases=[],
keywords=[],
body=class_body,
decorator_list=[],
type_params=[],
)
)[len("class Client:") :].strip()