Skip to content

Commit 829815b

Browse files
committed
fix imports
1 parent e1b8ce8 commit 829815b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

wfdb/pbdownload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import configparser
66
import os
77
import sys
8-
from . import readsignal
8+
import readsignal
99

1010

1111
def checkrecordfiles(recordname, filedirectory):

wfdb/readsignal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import math
88
import sys
99
import configparser
10-
from . import pbdownload
10+
import pbdownload
1111

1212
def rdsamp(recordname, sampfrom=0, sampto=[], channels=[], physical=1, stacksegments=1):
1313
"""Read a WFDB record and return the signal as a numpy array and the metadata as a dictionary.

0 commit comments

Comments
 (0)