aboutsummaryrefslogtreecommitdiff
path: root/src/ee/tools/read_ltspice_raw.py
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2019-05-14 23:10:49 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2019-05-14 23:10:49 +0200
commit66e4ca88a41dccdf6bc537929ea2bd3beb2001a3 (patch)
tree06b21416f1507b969f20403777a29864ec13c09d /src/ee/tools/read_ltspice_raw.py
parent702d7900b646a9d873e6eaa4c61088c618eba9f1 (diff)
downloadee-python-66e4ca88a41dccdf6bc537929ea2bd3beb2001a3.tar.gz
ee-python-66e4ca88a41dccdf6bc537929ea2bd3beb2001a3.tar.bz2
ee-python-66e4ca88a41dccdf6bc537929ea2bd3beb2001a3.tar.xz
ee-python-66e4ca88a41dccdf6bc537929ea2bd3beb2001a3.zip
Optimizing imports.
Diffstat (limited to 'src/ee/tools/read_ltspice_raw.py')
-rw-r--r--src/ee/tools/read_ltspice_raw.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ee/tools/read_ltspice_raw.py b/src/ee/tools/read_ltspice_raw.py
index c5cd71b..cd837ea 100644
--- a/src/ee/tools/read_ltspice_raw.py
+++ b/src/ee/tools/read_ltspice_raw.py
@@ -1,6 +1,7 @@
-import ee.ltspice
import sys
+import ee.ltspice
+
raw = ee.ltspice.read_ltspice_raw(sys.argv[1])
# print("Variables:")
@@ -21,7 +22,6 @@ import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
-from matplotlib.ticker import FuncFormatter, MaxNLocator
fig = plt.figure()
ax = fig.add_subplot(111)