Fix double import, 'import log' and 'from log import Log'. The reason to
do so is to access the global variable from the log package. This patch
uses only 'import log' that will work for both accessing the global
variables and Class Log functions.
Reported-by: LGTM
Signed-off-by: Kamalesh Babulal <kamalesh.babulal@oracle.com>
Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
#
from config import Config
-from log import Log
from run import Run
import datetime
import argparse
setup_time = 0.0
teardown_time = 0.0
+Log = log.Log
+
def parse_args():
parser = argparse.ArgumentParser("Libcgroup Functional Tests")