Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
elephantum committed Aug 25, 2024
1 parent feb7b9b commit 3ea4faf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datapipe/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ def to_human_repr(step: ComputeStep, extra_args: Optional[Dict] = None) -> str:
labels = " ".join([f"[magenta]{k}={v}[/magenta]" for (k, v) in step.labels])
res.append(f" labels: {labels}")

if inputs_arr := [i.name for i in step.input_dts]:
if inputs_arr := [inp.dt.name for inp in step.input_dts]:
inputs = ", ".join(inputs_arr)
res.append(f" inputs: {inputs}")

Expand Down

0 comments on commit 3ea4faf

Please sign in to comment.