Skip to content

Commit 2daf968

Browse files
committed
Add __init__ to AST stubs
1 parent d44579d commit 2daf968

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

graalpython/lib-graalpython/_ast.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242

4343

4444
class AST:
45+
def __init__(self, *args, **kwargs):
46+
pass
47+
4548
def __dir__(self):
4649
return []
4750

0 commit comments

Comments
 (0)