1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-03 20:02:39 +01:00

Run autoflake to remove unused imports & variables

This commit is contained in:
Brendan Jackman
2017-12-04 17:13:38 +00:00
committed by marcbonnici
parent b85098d5b2
commit aa2abd16a3
26 changed files with 20 additions and 77 deletions

View File

@@ -25,19 +25,15 @@ import re
import math
import imp
import string
import threading
import signal
import subprocess
import pkgutil
import traceback
import logging
import random
import hashlib
from datetime import datetime, timedelta
from operator import mul, itemgetter
from operator import mul
from StringIO import StringIO
from itertools import cycle, groupby, chain
from functools import partial
from itertools import chain, cycle
from distutils.spawn import find_executable
import yaml

View File

@@ -27,10 +27,8 @@ fact that Python is not the best language to use for configuration.
"""
import os
import re
import math
import numbers
import shlex
import string
from bisect import insort
from urllib import quote, unquote
from collections import defaultdict, MutableMapping
@@ -38,7 +36,7 @@ from copy import copy
from devlib.utils.types import identifier, boolean, integer, numeric, caseless_string
from wa.utils.misc import isiterable, to_identifier
from wa.utils.misc import isiterable
def list_of_strs(value):