We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a968a2 commit dc2bedfCopy full SHA for dc2bedf
12-ast.py
@@ -48,7 +48,7 @@ def visit_ClassDef(self, node):
48
if [True for n in node.body if isinstance(n, ast.AnnAssign)]:
49
dec = ast.Name(id='dataclass', ctx=ast.Load())
50
node.decorator_list.insert(0, dec)
51
- dec = ast.Name(id='typed', ctx=ast.Load())
+ dec = ast.Name(id='type_check', ctx=ast.Load())
52
53
return node
54
0 commit comments