Commit 086bad01 authored by Peter Jansweijer's avatar Peter Jansweijer

moved library modules one up so they can be shared by several scripts (each…

moved library modules one up so they can be shared by several scripts (each contained in a separate directory)
parent 72776b1e
......@@ -24,6 +24,9 @@ import scipy
import numpy
import matplotlib.pyplot as plt
# Add parent directory (containing 'lib') to the module search path
sys.path.insert(0,'..')
# private imports:
from lib.docopt import docopt
import lib.LeCroy8254 as DSO
......
......@@ -56,6 +56,9 @@ import scipy
import numpy
import matplotlib.pyplot as plt
# Add parent directory (containing 'lib') to the module search path
sys.path.insert(0,'..')
# private imports:
from lib.docopt import docopt
import lib.LeCroy8254 as DSO
......
......@@ -45,6 +45,9 @@ import scipy
import numpy
import matplotlib.pyplot as plt
# Add parent directory (containing 'lib') to the module search path
sys.path.insert(0,'..')
# private imports:
from lib.docopt import docopt
import lib.Keysight_53230A as tic
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment