Skip to content

Commit 3ff551d

Browse files
committed
FIX: Use the correct type
1 parent 5f4df91 commit 3ff551d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylossless/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ def find_outlier_chs(self, inst, picks="eeg"):
776776
logger.info("🔍 Detecting channels to leave out of reference.")
777777
if isinstance(inst, mne.Epochs):
778778
epochs = inst
779-
elif isinstance(inst, mne.Raw):
779+
elif isinstance(inst, mne.io.Raw):
780780
epochs = self.get_epochs(rereference=False, picks=picks)
781781
else:
782782
raise TypeError(

0 commit comments

Comments
 (0)