Skip to content

Commit 715540a

Browse files
authored
MAINT: Fix CircleCI [circle deploy] (mne-tools#13089)
1 parent 45fb777 commit 715540a

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

mne/viz/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1185,7 +1185,7 @@ def _onpick_sensor(event, fig, ax, pos, ch_names, show_names):
11851185
fig.canvas.draw()
11861186

11871187

1188-
def _close_event(event, fig):
1188+
def _close_event(event=None, fig=None):
11891189
"""Listen for sensor plotter close event."""
11901190
if getattr(fig, "lasso", None) is not None:
11911191
fig.lasso.disconnect()

tutorials/epochs/60_make_fixed_length_epochs.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@
55
=================================================
66
77
This tutorial shows how to segment continuous data into a set of epochs spaced
8-
equidistantly in time. The epochs will not be created based on experimental
9-
events; instead, the continuous data will be "chunked" into consecutive epochs
10-
(which may be temporally overlapping, adjacent, or separated).
11-
We will also briefly demonstrate how to use these epochs in connectivity
12-
analysis.
8+
equidistantly in time. The epochs will not be created based on experimental events;
9+
instead, the continuous data will be "chunked" into consecutive epochs (which may be
10+
temporally overlapping, adjacent, or separated). We will also briefly demonstrate how
11+
to use these epochs in connectivity analysis.
1312
1413
First, we import the necessary modules and read in a sample raw data set.
1514
This data set contains brain activity that is event-related, i.e.,

tutorials/evoked/10_evoked_overview.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@
55
The Evoked data structure: evoked/averaged data
66
===============================================
77
8-
This tutorial covers the basics of creating and working with :term:`evoked`
9-
data. It introduces the :class:`~mne.Evoked` data structure in detail,
10-
including how to load, query, subset, export, and plot data from an
11-
:class:`~mne.Evoked` object. For details on creating an :class:`~mne.Evoked`
12-
object from (possibly simulated) data in a :class:`NumPy array
13-
<numpy.ndarray>`, see :ref:`tut-creating-data-structures`.
8+
This tutorial covers the basics of creating and working with :term:`evoked` data. It
9+
introduces the :class:`~mne.Evoked` data structure in detail, including how to load,
10+
query, subset, export, and plot data from an :class:`~mne.Evoked` object. For details
11+
on creating an :class:`~mne.Evoked` object from (possibly simulated) data in a
12+
:class:`NumPy array <numpy.ndarray>`, see :ref:`tut-creating-data-structures`.
1413
1514
As usual, we start by importing the modules we need:
1615
"""

0 commit comments

Comments
 (0)