From bb066c80f99eaba3a9859f751cd744ac2bc6ce18 Mon Sep 17 00:00:00 2001 From: tserg <8017125+tserg@users.noreply.github.com> Date: Thu, 28 Dec 2023 19:10:20 +0800 Subject: [PATCH] remove outdated comment --- vyper/semantics/types/function.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/vyper/semantics/types/function.py b/vyper/semantics/types/function.py index c71308e8fc..3eb024e5b1 100644 --- a/vyper/semantics/types/function.py +++ b/vyper/semantics/types/function.py @@ -44,14 +44,12 @@ class _FunctionArg: @dataclass class PositionalArg(_FunctionArg): - # unfolded ast ast_source: Optional[vy_ast.VyperNode] = None @dataclass class KeywordArg(_FunctionArg): default_value: vy_ast.VyperNode - # unfolded ast ast_source: Optional[vy_ast.VyperNode] = None