Skip to content

Commit 1be8f42

Browse files
committed
Update Binding.py
1 parent 9a504cc commit 1be8f42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

edg/core/Binding.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ def expr_to_proto(self, expr: ConstraintExpr, ref_map: IdentityDict[Refable, edg
108108

109109
class InitParamBinding(ParamBinding):
110110
"""Binding that indicates this is a parameter from an __init__ argument.
111-
Can optionally take a value, which would have a binding in the parent's scope."""
112-
def __init__(self, parent: ParamParentTypes, value: Optional[ConstraintExpr] = None):
111+
Can optionally take a value, which is the raw value passed into __init__."""
112+
def __init__(self, parent: ParamParentTypes, value: Optional[Any] = None):
113113
super().__init__(parent)
114114
self.value = value
115115

0 commit comments

Comments
 (0)