Skip to content

Commit 1a1368b

Browse files
committed
static vs self
1 parent e911fa7 commit 1a1368b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

neo/rawio/openephysbinaryrawio.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,13 @@ def _source_name(self):
133133

134134
def _parse_header(self):
135135
# Use the static private methods directly
136-
folder_structure_dict, possible_experiments = OpenEphysBinaryRawIO._parse_folder_structure(self.dirname, self.experiment_names)
136+
folder_structure_dict, possible_experiments = self._parse_folder_structure(self.dirname, self.experiment_names)
137137

138138
check_folder_consistency(folder_structure_dict, possible_experiments)
139139
self.folder_structure = folder_structure_dict
140140

141141
# Map folder structure to Neo indexing
142-
all_streams, nb_block, nb_segment_per_block = OpenEphysBinaryRawIO._map_folder_structure_to_neo(folder_structure_dict)
142+
all_streams, nb_block, nb_segment_per_block = self._map_folder_structure_to_neo(folder_structure_dict)
143143

144144
# all streams are consistent across blocks and segments.
145145
# also checks that 'continuous' and 'events' folder are present

0 commit comments

Comments
 (0)