Skip to content

Commit 3d253f8

Browse files
committed
Merge branch 'develop' into release/2.10.3
2 parents 89b2209 + 8d0541c commit 3d253f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ibllib/dsp/voltage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ def decompress_destripe_cbin(sr_file, output_file=None, h=None, wrot=None, appen
335335
butter_kwargs, k_kwargs, spatial_fcn = _get_destripe_parameters(sr.fs, butter_kwargs, k_kwargs, k_filter)
336336
h = sr.geometry if h is None else h
337337
ncv = h['sample_shift'].size # number of channels
338-
output_file = sr.file_bin.with_suffix('.bin') if output_file is None else output_file
338+
output_file = sr.file_bin.with_suffix('.bin') if output_file is None else Path(output_file)
339339
assert output_file != sr.file_bin
340340
taper = np.r_[0, scipy.signal.windows.cosine((SAMPLES_TAPER - 1) * 2), 0]
341341
# create the FFT stencils

0 commit comments

Comments
 (0)