Skip to content

Commit a47d1c3

Browse files
committed
change value type to Any to prevent premature validation errors from component code"
1 parent 25ec97d commit a47d1c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lfx/src/lfx/inputs/inputs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ class IntInput(BaseInputMixin, ListableInputMixin, RangeMixin, MetadataTraceMixi
477477
field_type: SerializableFieldTypes = FieldTypes.INTEGER
478478
track_in_telemetry: CoalesceBool = True # Safe numeric parameter
479479

480-
value: int = 0
480+
value: Any = 0
481481

482482
@field_validator("value")
483483
@classmethod

0 commit comments

Comments
 (0)