From 85acf0b067232bdb106a0dd1065b2d30938cb739 Mon Sep 17 00:00:00 2001 From: Richard Berger Date: Mon, 10 May 2021 17:46:11 -0400 Subject: [PATCH] Remove unused imports --- lib/pace/Install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pace/Install.py b/lib/pace/Install.py index 08bbb331bb..140d65c819 100644 --- a/lib/pace/Install.py +++ b/lib/pace/Install.py @@ -6,7 +6,7 @@ used to automate the steps described in the README file in this dir """ from __future__ import print_function -import sys, os, subprocess, shutil +import sys, subprocess from argparse import ArgumentParser sys.path.append('..') @@ -102,4 +102,4 @@ if buildflag: print("Removing pace build files and archive ...") cmd = 'rm %s; make clean-build' % (download_filename) - subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True) \ No newline at end of file + subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True)