Skip to content

Commit 9b8e4b4

Browse files
authored
Merge pull request #1686 from mahlzahn/minor_fix_biocam_default
biocam io: fix minor default value for fill_gaps_strategy
2 parents 3f4d4a1 + 3db744b commit 9b8e4b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

neo/io/biocamio.py

Lines changed: 1 addition & 1 deletion
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, fill_gaps_strategy="zeros"):
9+
def __init__(self, filename, fill_gaps_strategy=None):
1010
BiocamRawIO.__init__(self, filename=filename,
1111
fill_gaps_strategy=fill_gaps_strategy)
1212
BaseFromRaw.__init__(self, filename)

neo/rawio/biocamrawio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class BiocamRawIO(BaseRawIO):
3535
The *.h5 file to be read
3636
fill_gaps_strategy: "zeros" | "synthetic_noise" | None, default: None
3737
The strategy to fill the gaps in the data when using event-based
38-
compression. If None and the file is event-based compressed,
38+
compression. If None and the file is event-based compressed,
3939
you need to specify a fill gaps strategy:
4040
4141
* "zeros": the gaps are filled with unsigned 0s (2048). This value is the "0" of the unsigned 12 bits

0 commit comments

Comments
 (0)