Skip to content
This repository was archived by the owner on Aug 2, 2022. It is now read-only.

Commit aa32444

Browse files
committed
Closes #33.
1 parent a57410e commit aa32444

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

biosppy/utils.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@ def walktree(top=None, spec=None):
119119
spec : str, optional
120120
Regular expression to match the desired files;
121121
if None, matches all files. Typical patterns:
122-
* `r'\.txt$'` - matches files with '.txt' extension;
123-
* `r'^File_'` - matches files starting with 'File_'
124-
* `r'^File_.+\.txt$'` - matches files starting with 'File_' and ending
125-
with the '.txt' extension.
122+
* `r'\.txt$'` - matches files with '.txt' extension;
123+
* `r'^File_'` - matches files starting with 'File\_'
124+
* `r'^File_.+\.txt$'` - matches files starting with 'File\_'
125+
and ending with the '.txt' extension.
126126
127127
Yields
128128
------
@@ -135,8 +135,8 @@ def walktree(top=None, spec=None):
135135
136136
See Also
137137
--------
138-
https://docs.python.org/3/library/re.html
139-
https://regex101.com/
138+
* https://docs.python.org/3/library/re.html
139+
* https://regex101.com/
140140
141141
"""
142142

docs/biosppy.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ Modules
4242
:undoc-members:
4343
:show-inheritance:
4444

45+
.. automodule:: biosppy.timing
46+
:members:
47+
:undoc-members:
48+
:show-inheritance:
49+
4550
.. automodule:: biosppy.utils
4651
:members:
4752
:undoc-members:

0 commit comments

Comments
 (0)