Skip to content

Commit 35b47a9

Browse files
committed
fix BiocamIO init arguments
1 parent d30cec2 commit 35b47a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

neo/io/biocamio.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class BiocamIO(BiocamRawIO, BaseFromRaw):
66
__doc__ = BiocamRawIO.__doc__
77
mode = "file"
88

9-
def __init__(self, filename, true_zeroes=False, use_synthetic_noise=False):
10-
BiocamRawIO.__init__(self, filename=filename, true_zeroes=true_zeroes,
11-
use_synthetic_noise=use_synthetic_noise)
9+
def __init__(self, filename, fill_gaps_strategy="zeros"):
10+
BiocamRawIO.__init__(self, filename=filename,
11+
fill_gaps_strategy=fill_gaps_strategy)
1212
BaseFromRaw.__init__(self, filename)

0 commit comments

Comments
 (0)