mirror of https://github.com/langgenius/dify.git
chore(api): fix incorrect assertion message
This commit is contained in:
parent
1a3ac6fc68
commit
495562e313
|
|
@ -291,7 +291,7 @@ class SQLAlchemyWorkflowNodeExecutionRepository(WorkflowNodeExecutionRepository)
|
|||
return None
|
||||
|
||||
value_json = _deterministic_json_dump(json_encodable_value)
|
||||
assert value_json is not None, "value_json should be None here."
|
||||
assert value_json is not None, "value_json should be not None here."
|
||||
|
||||
suffix = type_.value
|
||||
upload_file = self._file_service.upload_file(
|
||||
|
|
|
|||
Loading…
Reference in New Issue