aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Kacur <jkacur@redhat.com>2020-09-15 13:36:22 -0400
committerJohn Kacur <jkacur@redhat.com>2020-09-15 13:36:22 -0400
commitf38ee9faedc054df610667802dd328d37586b5d6 (patch)
treede212e4f6574d8f44320df23348fc98b8d987592
parent2cc58abef52b337f826f36be21357ff6dcb54f5c (diff)
downloadrteval-f38ee9faedc054df610667802dd328d37586b5d6.tar.gz
rteval: sysstat.py: Put imports on separate lines
put imports on separate lines Signed-off-by: John Kacur <jkacur@redhat.com>
-rw-r--r--rteval/modules/measurement/sysstat.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/rteval/modules/measurement/sysstat.py b/rteval/modules/measurement/sysstat.py
index 5e68720..d99bef5 100644
--- a/rteval/modules/measurement/sysstat.py
+++ b/rteval/modules/measurement/sysstat.py
@@ -25,7 +25,13 @@
# are deemed to be part of the source code.
#
-import os, sys, libxml2, tempfile, time, subprocess, base64, bz2, textwrap
+import os
+import time
+import subprocess
+import base64
+import bz2
+import textwrap
+import libxml2
from rteval.Log import Log
from rteval.modules import rtevalModulePrototype