Skip to content

Commit a4a8380

Browse files
committed
fix: export default to False
1 parent 38fdfb2 commit a4a8380

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

element_array_ephys/spike_sorting/si_spike_sorting.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ class PostProcessing(dj.Imported):
239239
---
240240
execution_time: datetime # datetime of the start of this step
241241
execution_duration: float # execution duration in hours
242-
do_si_export=1: bool # whether to export to phy
242+
do_si_export=0: bool # whether to export to phy
243243
"""
244244

245245
def make(self, key):
@@ -331,7 +331,7 @@ class SIExport(dj.Computed):
331331
@property
332332
def key_source(self):
333333
return PostProcessing & "do_si_export = 1"
334-
334+
335335
def make(self, key):
336336
execution_time = datetime.utcnow()
337337

0 commit comments

Comments
 (0)