From 76592c888d93539b94e48ec816b1b66124015d61 Mon Sep 17 00:00:00 2001 From: sommersoft Date: Sat, 2 Apr 2022 08:44:07 -0500 Subject: [PATCH] remove unsused imports --- testing/downstream_testing/downstream_runner.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/testing/downstream_testing/downstream_runner.py b/testing/downstream_testing/downstream_runner.py index 92f901364..d457ed5ce 100644 --- a/testing/downstream_testing/downstream_runner.py +++ b/testing/downstream_testing/downstream_runner.py @@ -1,17 +1,13 @@ import argparse -from collections import namedtuple, UserDict import configparser import json import logging import os import os.path -from pprint import pprint import re import shlex import subprocess -import sh -from sh.contrib import git import yaml logging.basicConfig(format="%(levelname)s | %(module)s.%(funcName)s | %(message)s", level="INFO")