Skip to content

Commit

Permalink
remove n property from Num
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed Oct 12, 2024
1 parent 61758b2 commit 5d13a36
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions vyper/ast/nodes.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,7 @@ class ExprNode(VyperNode):
class Constant(ExprNode):
value: Any = ...

class Num(Constant):
@property
def n(self): ...
class Num(Constant): ...

class Int(Num):
value: int = ...
Expand Down

0 comments on commit 5d13a36

Please sign in to comment.