Skip to content

Commit b8d78a5

Browse files
committed
idk how that was possible
1 parent 3f99a65 commit b8d78a5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

astToolkit/_toolMake.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def Call(callee: ast.expr, args: list[ast.expr]=[], list_keyword: list[ast.keywo
101101

102102
@staticmethod
103103
def ClassDef(name: str, bases: list[ast.expr]=[], list_keyword: list[ast.keyword]=[], body: list[ast.stmt]=[], decorator_list: list[ast.expr]=[], **keywordArguments: intORtype_params) -> ast.ClassDef:
104-
return ast.ClassDef(name=name, bases=bases, keywords=list_keyword, body=body, decorator_list=decorator_list, **keywordArguments)
104+
return ast.ClassDef(name=name, bases=bases, keywords=list_keyword, body=body, decorator_list=decorator_list, type_params=[], **keywordArguments)
105105

106106
@staticmethod
107107
def Compare(left: ast.expr, ops: list[ast.cmpop], comparators: list[ast.expr], **keywordArguments: int) -> ast.Compare:

0 commit comments

Comments
 (0)