Skip to content

Commit 1c7e37b

Browse files
committed
reorganize module placement within package
1 parent faaca06 commit 1c7e37b

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

wfdb/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from .records import Record, MultiRecord, rdheader, rdsamp, srdsamp, wrsamp, dldatabase, dldatabasefiles
2-
from ._signals import estres, wrdatfile
3-
from .annotations import Annotation, rdann, wrann, showanncodes
4-
from .plots import plotrec, plotann
5-
from .downloads import getdblist
1+
from .readwrite.records import Record, MultiRecord, rdheader, rdsamp, srdsamp, wrsamp, dldatabase, dldatabasefiles
2+
from .readwrite._signals import estres, wrdatfile
3+
from .readwrite.annotations import Annotation, rdann, wrann, showanncodes
4+
from .readwrite.downloads import getdblist
5+
from .plot.plots import plotrec, plotann

wfdb/plot/__init__.py

Whitespace-only changes.

wfdb/plots.py renamed to wfdb/plot/plots.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import numpy as np
22
import matplotlib.pyplot as plt
3-
from . import records
4-
from . import _headers
5-
from . import _signals
6-
from . import annotations
3+
from ..readwrite import records
4+
from ..readwrite import _headers
5+
from ..readwrite import _signals
6+
from ..readwrite import annotations
77

88
# Plot a WFDB Record's signals
99
# Optionally, overlay annotation locations

wfdb/readwrite/__init__.py

Whitespace-only changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)