From e48e491b883b921c85b4698664d2f9fac77a0149 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Sat, 18 Nov 2017 21:25:41 +0100 Subject: [PATCH] tests: fix python style 'E401 multiple imports on one line' --- tests/lwip/tests/01-run.py | 6 +++--- tests/warn_conflict/test.py | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/lwip/tests/01-run.py b/tests/lwip/tests/01-run.py index ede319ffca..62c9e2a60c 100755 --- a/tests/lwip/tests/01-run.py +++ b/tests/lwip/tests/01-run.py @@ -7,13 +7,13 @@ # Distributed under terms of the MIT license. from __future__ import print_function -import argparse -import os, sys +import os +import sys import random -import pexpect import subprocess import time import types +import pexpect DEFAULT_TIMEOUT = 5 diff --git a/tests/warn_conflict/test.py b/tests/warn_conflict/test.py index 1f3bfb2d12..884f44afdb 100755 --- a/tests/warn_conflict/test.py +++ b/tests/warn_conflict/test.py @@ -1,5 +1,6 @@ #!/usr/bin/env python3 -import subprocess, os +import subprocess +import os cross_gcc = "arm-none-eabi-gcc"