aboutsummaryrefslogtreecommitdiff
path: root/util/plot_dh.py
diff options
context:
space:
mode:
authorJ08nY2018-03-21 20:35:19 +0100
committerJ08nY2018-03-21 20:35:19 +0100
commit08088e5563f602eb87fb3ef90770df9cc2faa282 (patch)
treef144a8ca40616376ec6e0bfd91982a9095377cff /util/plot_dh.py
parent90930b191281120882943b0877703df028053b1d (diff)
downloadECTester-08088e5563f602eb87fb3ef90770df9cc2faa282.tar.gz
ECTester-08088e5563f602eb87fb3ef90770df9cc2faa282.tar.zst
ECTester-08088e5563f602eb87fb3ef90770df9cc2faa282.zip
Diffstat (limited to 'util/plot_dh.py')
-rwxr-xr-xutil/plot_dh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/plot_dh.py b/util/plot_dh.py
index 81bf441..327e28a 100755
--- a/util/plot_dh.py
+++ b/util/plot_dh.py
@@ -37,7 +37,7 @@ if __name__ == "__main__":
if "nano" in header_names[1]:
unit = r"$\mu s$"
- time_data = map(lambda x: x[1]/1000, data)
+ time_data = map(lambda x: x[1]//1000, data)
else:
unit = r"ms"
time_data = map(itemgetter(1), data)