Skip to content

Commit 153fd4a

Browse files
committed
fix-maxwell-reader
1 parent 6f4a97c commit 153fd4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

neo/rawio/maxwellrawio.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def _parse_header(self):
7878
signal_streams = []
7979
if int(version) == 20160704:
8080
self._old_format = True
81-
signal_streams.append(("well000", "well000"))
81+
signal_streams.append(("well000", "well000", ""))
8282
elif int(version) > 20160704:
8383
# multi stream stream (one well is one stream)
8484
self._old_format = False
@@ -106,7 +106,7 @@ def _parse_header(self):
106106
for well_name in well_ids:
107107
rec_names = list(h5file["wells"][well_name].keys())
108108
if self.rec_name in rec_names:
109-
signal_streams.append((well_name, well_name, well_name))
109+
signal_streams.append((well_name, well_name, well_name, ""))
110110
else:
111111
raise NotImplementedError(f"This version {version} is not supported")
112112

0 commit comments

Comments
 (0)