Skip to content

Commit

Permalink
clean up NameConstant
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed Nov 16, 2023
1 parent 19f5c7f commit c7585c6
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions vyper/ast/nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -908,10 +908,6 @@ class Dict(ExprNode):
class NameConstant(Constant):
__slots__ = ("value",)

def __init__(self, parent: Optional["VyperNode"] = None, **kwargs: dict):
super().__init__(parent, **kwargs)
self._metadata["folded_value"] = self


class Name(ExprNode):
__slots__ = ("id",)
Expand Down

0 comments on commit c7585c6

Please sign in to comment.