X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=nfvbench%2Futils.py;h=412dfae3f2e7d9676ce1aac3b05d5c53c4260e4f;hb=8da439b932537748d379c7bd3bdf560ef739b203;hp=fc725176603fd25879c4e41ab8b1223b606dca1e;hpb=97b452affb0e99816ad503a5f79b01f38b93059a;p=nfvbench.git diff --git a/nfvbench/utils.py b/nfvbench/utils.py index fc72517..412dfae 100644 --- a/nfvbench/utils.py +++ b/nfvbench/utils.py @@ -12,17 +12,18 @@ # License for the specific language governing permissions and limitations # under the License. -import errno -import fcntl -from functools import wraps -import json -from log import LOG from math import isnan import os import re import signal import subprocess +import errno +import fcntl +from functools import wraps +import json +from log import LOG + class TimeoutError(Exception): pass @@ -30,7 +31,7 @@ class TimeoutError(Exception): def timeout(seconds=10, error_message=os.strerror(errno.ETIME)): def decorator(func): - def _handle_timeout(signum, frame): + def _handle_timeout(_signum, _frame): raise TimeoutError(error_message) def wrapper(*args, **kwargs): @@ -110,7 +111,7 @@ def get_intel_pci(nic_ports): for driver in ['i40e', 'ixgbe']: matches = re.findall(regex.format(hx=hx, driver=driver), devices) if matches: - pcis = map(lambda x: x[0], matches) + pcis = [x[0] for x in matches] if len(pcis) < 2: continue pcis.sort()