Skip to content

Commit 15a775d

Browse files
committed
removed check for result None in TaskBase._run(). Shouldn't occur now that hash changes are being detected
1 parent 4ba8da0 commit 15a775d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pydra/engine/core.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1301,8 +1301,6 @@ async def _run(self, submitter=None, rerun=False, **kwargs):
13011301
# Check for any changes to the input hashes that have occurred during the execution
13021302
# of the task
13031303
self._check_for_hash_changes()
1304-
if result is None:
1305-
raise Exception("This should never happen, please open new issue")
13061304
return result
13071305

13081306
async def _run_task(self, submitter, rerun=False):

0 commit comments

Comments
 (0)