Skip to content

Commit

Permalink
Corrected typo.
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel McCloy <[email protected]>
  • Loading branch information
ashtondoane and drammock authored Sep 7, 2024
1 parent df2bac0 commit b1235c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ilabs_streamsync/streamsync.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def _extract_data_from_stream(self, stream, channel):
"""Extract pulses and raw data from stream provided."""
ext = pathlib.Path(stream).suffix
if ext == ".fif":
return self._extract_data__from_raw(stream, channel)
return self._extract_data_from_raw(stream, channel)
if ext == ".wav":
return self._extract_data_from_wav(stream, channel)
raise TypeError("Stream provided was of unsupported format. Please provide a fif or wav file.")
Expand Down

0 comments on commit b1235c8

Please sign in to comment.