Skip to content

Commit ae31bf4

Browse files
committed
Updates documentation MIT-LCP#227
Updates which functions will be imported with the package and which functions will be read in ReadTheDocs. Also updates the necessary packages to be imported. Fixes part of MIT-LCP#227.
1 parent 0911032 commit ae31bf4

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)