Ignore "repr" key when processing inputs
This commit is contained in:
parent
f59bf44a24
commit
8405d6bed8
1 changed files with 3 additions and 1 deletions
|
|
@ -120,7 +120,9 @@ def process_inputs(inputs: Optional[dict], artifacts: Dict[str, Any]) -> dict:
|
|||
inputs = {}
|
||||
|
||||
for key, value in artifacts.items():
|
||||
if key not in inputs or not inputs[key]:
|
||||
if key == "repr":
|
||||
continue
|
||||
elif key not in inputs or not inputs[key]:
|
||||
inputs[key] = value
|
||||
|
||||
return inputs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue