File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 77import numpy as np
88from mne .utils import logger , verbose
99
10- from .base import SpectralConnectivity , SpectroTemporalConnectivity , EpochSpectralConnectivity
10+ from .base import (
11+ EpochSpectralConnectivity ,
12+ SpectralConnectivity ,
13+ SpectroTemporalConnectivity ,
14+ )
1115from .spectral import spectral_connectivity_epochs , spectral_connectivity_time
1216from .utils import fill_doc
1317
@@ -256,7 +260,7 @@ def phase_slope_index_time(data,
256260 fmax = np .inf ,
257261 mt_bandwidth = None ,
258262 freqs = None ,
259- n_cycles = 7 ,
263+ n_cycles = 7 ,
260264 padding = 0 ,
261265 n_jobs = 1 ,
262266 ):
@@ -430,4 +434,4 @@ def phase_slope_index_time(data,
430434 event_id = event_id ,
431435 )
432436
433- return conn
437+ return conn
Original file line number Diff line number Diff line change @@ -75,4 +75,4 @@ def test_psi_time():
7575 )
7676
7777 assert np .all (conn_cwt .get_data () > 0 )
78- assert conn_cwt .shape [- 1 ] == n_epochs
78+ assert conn_cwt .shape [- 1 ] == n_epochs
You can’t perform that action at this time.
0 commit comments