Skip to content

Commit

Permalink
fix(runner/cloud-executor): bad ternary
Browse files Browse the repository at this point in the history
  • Loading branch information
Caceresenzo committed Dec 2, 2024
1 parent f2f112e commit 4a0211d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crunch/runner/cloud_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def start(self):
else:
self.reset_trace()

print(f"produced dataframe - len={len(prediction) if not None else None}")
print(f"[debug] produced dataframe - len={len(prediction) if prediction is not None else None}")
if prediction is not None:
write(
prediction,
Expand Down

0 comments on commit 4a0211d

Please sign in to comment.