Skip to content

Commit a9946d1

Browse files
committed
Fix returning 27 outputs
1 parent 41f1df3 commit a9946d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ibllib/pipes/ephys_preprocessing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -976,7 +976,7 @@ def _run(self, cams=None, overwrite=False):
976976
expected_outputs_present, expected_outputs = self.assert_expected(self.output_files, silent=True)
977977
if overwrite is False and expected_outputs_present is True:
978978
actual_outputs.extend(expected_outputs)
979-
continue
979+
return actual_outputs
980980
else:
981981
file_mp4 = next(self.session_path.joinpath('raw_video_data').glob(f'_iblrig_{cam}Camera.raw*.mp4'))
982982
if not file_mp4.exists():

0 commit comments

Comments
 (0)