Skip to content

Commit

Permalink
fix: remove .keyword from Call AST node (#3689)
Browse files Browse the repository at this point in the history
for some reason, there is a slot named "keyword" on the Call AST node,
which is never used (and doesn't exist in the python AST!).

this commit removes it for hygienic purposes.
  • Loading branch information
charles-cooper authored Dec 13, 2023
1 parent 10564dc commit 0b1f3e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vyper/ast/nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1254,7 +1254,7 @@ def _op(self, left, right):


class Call(ExprNode):
__slots__ = ("func", "args", "keywords", "keyword")
__slots__ = ("func", "args", "keywords")


class keyword(VyperNode):
Expand Down

0 comments on commit 0b1f3e1

Please sign in to comment.