Skip to content

Commit 4a8c4f4

Browse files
authored
Merge pull request MIT-LCP#228 from MIT-LCP/fix_docs_227
Updates documentation MIT-LCP#227
2 parents 0911032 + ae31bf4 commit 4a8c4f4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def __getattr__(cls, name):
3030
return MagicMock()
3131

3232
MOCK_MODULES = ['numpy', 'matplotlib', 'matplotlib.pyplot', 'pandas', 'scipy',
33-
'sklearn', 'sklearn.preprocessing']
33+
'sklearn', 'sklearn.preprocessing', 'requests', 'mne']
3434
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)
3535

3636
# -- General configuration ------------------------------------------------

docs/io.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ WFDB Records
99
---------------
1010

1111
.. automodule:: wfdb.io
12-
:members: rdrecord, rdsamp, wrsamp
12+
:members: rdrecord, rdheader, rdsamp, wrsamp, edf2mit
1313

1414
.. autoclass:: wfdb.io.Record
1515
:members: wrsamp, adc, dac

docs/wfdb.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ WFDB Records
99
---------------
1010

1111
.. automodule:: wfdb
12-
:members: rdrecord, rdsamp, wrsamp
12+
:members: rdrecord, rdheader, rdsamp, wrsamp, edf2mit
1313

1414
.. autoclass:: wfdb.Record
1515
:members: wrsamp, adc, dac

wfdb/io/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from .record import (Record, MultiRecord, rdheader, rdrecord, rdsamp, wrsamp,
2-
dl_database, SIGNAL_CLASSES)
2+
dl_database, edf2mit, SIGNAL_CLASSES)
33
from ._signal import est_res, wr_dat_file
44
from .annotation import (Annotation, rdann, wrann, show_ann_labels,
55
show_ann_classes)

0 commit comments

Comments
 (0)