Skip to content

Commit

Permalink
More reliable OS check
Browse files Browse the repository at this point in the history
  • Loading branch information
hoechenberger committed May 11, 2022
1 parent 0146da7 commit cf7660c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_imports.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import sys
import platform

import mne
import mne_bids
Expand All @@ -11,7 +11,7 @@
import mne_microstates
import mne_ari
import mne_kit_gui
if sys.platform != 'win32':
if platform.system() != 'Windows':
import mne_icalabel
import autoreject
import pyprep
Expand Down

0 comments on commit cf7660c

Please sign in to comment.