Skip to content

Commit 99588dc

Browse files
committed
Update import example.
1 parent 8aa8e5f commit 99588dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ Example - Import
5555
^^^^^^^^^^^^^^^^
5656
Import into python script::
5757

58-
from readMeasDataVB15 import readMeasDataVB15
58+
from rawdatarinator.readMeasDataVB15 import readMeasDataVB15 as rmd
5959
6060
class DataLoader:
6161
def __init__(self):
62-
data = readMeasDataVB15('raw.dat')
62+
data = rmd('raw.dat')
6363
6464
if __name__ == "__main__":
6565
DataLoader()

0 commit comments

Comments
 (0)