Remove unused imports

This commit is contained in:
Richard Berger
2021-05-10 17:46:11 -04:00
parent 67660197a6
commit 85acf0b067

View File

@ -6,7 +6,7 @@ used to automate the steps described in the README file in this dir
""" """
from __future__ import print_function from __future__ import print_function
import sys, os, subprocess, shutil import sys, subprocess
from argparse import ArgumentParser from argparse import ArgumentParser
sys.path.append('..') sys.path.append('..')
@ -102,4 +102,4 @@ if buildflag:
print("Removing pace build files and archive ...") print("Removing pace build files and archive ...")
cmd = 'rm %s; make clean-build' % (download_filename) cmd = 'rm %s; make clean-build' % (download_filename)
subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True) subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True)