Skip to content

Commit d29d261

Browse files
committed
Fix missing return
1 parent 5cf8948 commit d29d261

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llmstack/common/blocks/base/processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def parse_validate_input(self, input) -> BaseInputType:
199199
if self._input_tx_cb:
200200
input = self._input_tx_cb(input)
201201
if issubclass(input_cls, BaseModel):
202-
input_cls(**input)
202+
return input_cls(**input)
203203
return input
204204

205205
def parse_validate_configuration(

0 commit comments

Comments
 (0)