Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Import iter_subproc() #23

Merged
merged 16 commits into from
Jun 14, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
rf(CommandError): remove duplicate conditional in __str__()
This created a branch that could never be reached in practice.
  • Loading branch information
mih committed Jun 14, 2024
commit 8c161c8a5c6d56c59c05421ff89618692d94c9dc
3 changes: 0 additions & 3 deletions datasalad/runners/exception.py
Original file line number Diff line number Diff line change
@@ -104,9 +104,6 @@ def __str__(self) -> str:
else:
stderr = self.stderr

if not stderr:
return to_str

to_str += f' [stderr: {truncate_str(stderr, (60, 0))}]'

return to_str