Skip to content

Commit

Permalink
even more than more testing fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronearlerichardson committed Dec 12, 2023
1 parent b2766d1 commit 12d59f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ieeg/calc/mat.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ def from_signal(cls, sig: Signal, **kwargs) -> 'LabeledArray':
"""

arr = sig.get_data(copy=False)
arr = sig.get_data()
match sig:
case mne.io.base.BaseRaw():
labels = [sig.ch_names, sig.times]
Expand Down
6 changes: 3 additions & 3 deletions ieeg/timefreq/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ def wavelet_scaleogram(inst: BaseEpochs, f_low: float = 2,
Range : 1310640 ... 1370605 = 1311.411 ... 1371.411 secs
Ready.
>>> layout = BIDSLayout(bids_root)
>>> raw = raw_from_layout(layout, subject="pt1", preload=True,
... extension=".vhdr", verbose=False)
Reading 0 ... 269079 = 0.000 ... 269.079 secs...
>>> with mne.use_log_level(0):
... raw = raw_from_layout(layout, subject="pt1", preload=True,
... extension=".vhdr", verbose=False)
>>> epochs = trial_ieeg(raw, ['AST1,3', 'G16'], (-1, 2), verbose=True
... ) # doctest: +ELLIPSIS
Used Annotations descriptions: ['AD1-4, ATT1,2', 'AST1,3', 'G16', 'PD', ...
Expand Down

0 comments on commit 12d59f0

Please sign in to comment.