Skip to content

Commit e8b82b7

Browse files
Merge pull request #121 from sccn/main
small sinc
2 parents ac21e2e + df08554 commit e8b82b7

File tree

8 files changed

+16
-10
lines changed

8 files changed

+16
-10
lines changed

docs/source/dataset_summary.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
.. meta::
2-
:hide_sidebar: true
3-
:html_theme.sidebar_secondary.remove: true
4-
:html_theme.sidebar_primary.remove: true
1+
:hide_sidebar: true
2+
:html_theme.sidebar_secondary.remove: true
3+
:html_theme.sidebar_primary.remove: true
54

65
.. _data_summary:
76

docs/source/index.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
.. meta::
2-
:html_theme.sidebar_secondary.remove: true
1+
:html_theme.sidebar_secondary.remove: true
32

43
EEGDASH Documentation
54
=====================

docs/source/install/install.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
:html_theme.sidebar_secondary.remove: true
2+
13
.. _installation:
24

35
================

docs/source/install/install_pip.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
:html_theme.sidebar_secondary.remove: true
2+
13
.. _install_pip:
24

35
Installing from PyPI

docs/source/install/install_source.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
:html_theme.sidebar_secondary.remove: true
2+
13
.. _install_source:
24

35
Installing from sources

docs/source/overview.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
:html_theme.sidebar_secondary.remove: true
2+
13
.. _overview:
24

35
========

examples/eeg2025/tutorial_challenge_1.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,8 @@
224224
add_extras_columns,
225225
)
226226

227-
# Match tests' cache layout under ~/mne_data/eeg_challenge_cache
228-
DATA_DIR = (Path.home() / "mne_data" / "eeg_challenge_cache").resolve()
227+
# Match tests' cache layout under ~/eegdash_cache/eeg_challenge_cache
228+
DATA_DIR = (Path.home() / "eegdash_cache" / "eeg_challenge_cache").resolve()
229229
DATA_DIR.mkdir(parents=True, exist_ok=True)
230230

231231
dataset_ccd = EEGChallengeDataset(

examples/eeg2025/tutorial_challenge_2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@
147147

148148
######################################################################
149149
# The first step is to define the cache folder!
150-
# Match tests' cache layout under ~/mne_data/eeg_challenge_cache
151-
DATA_DIR = (Path.home() / "mne_data" / "eeg_challenge_cache").resolve()
150+
# Match tests' cache layout under ~/eegdash_cache/eeg_challenge_cache
151+
DATA_DIR = (Path.home() / "eegdash_cache" / "eeg_challenge_cache").resolve()
152152

153153
# Creating the path if it does not exist
154154
DATA_DIR.mkdir(parents=True, exist_ok=True)

0 commit comments

Comments
 (0)