File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
element_array_ephys/readers Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -431,7 +431,9 @@ def run_modules(self):
431431 if module == 'median_subtraction' and self ._median_subtraction_status :
432432 median_subtraction_status = self ._get_module_status ('median_subtraction' )
433433 median_subtraction_status ['duration' ] = self ._median_subtraction_status ['duration' ]
434- median_subtraction_status ['completion_time' ] = datetime .strptime (median_subtraction_status ['start_time' ], '%Y-%m-%d %H:%M:%S.%f' ) + timedelta (seconds = median_subtraction_status ['duration' ])
434+ median_subtraction_status ['completion_time' ] = (
435+ datetime .strptime (median_subtraction_status ['start_time' ], '%Y-%m-%d %H:%M:%S.%f' )
436+ + timedelta (seconds = median_subtraction_status ['duration' ]))
435437 self ._update_module_status ({'median_subtraction' : median_subtraction_status })
436438 continue
437439
You can’t perform that action at this time.
0 commit comments