From 5abe7e4ce3e098ddb7a060e24f2f8aa60b0353a7 Mon Sep 17 00:00:00 2001 From: Yegor Yefremov Date: Thu, 13 Feb 2020 11:09:05 +0100 Subject: [PATCH] support/run-tests: reorder imports Reorder imports using the isort utility to fix a warning from pylint3: wrong-import-order: standard import "import multiprocessing" should be placed before "import nose2" Signed-off-by: Yegor Yefremov Signed-off-by: Peter Korsgaard --- support/testing/run-tests | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/support/testing/run-tests b/support/testing/run-tests index f295c053ff..022209b414 100755 --- a/support/testing/run-tests +++ b/support/testing/run-tests @@ -1,9 +1,10 @@ #!/usr/bin/env python3 import argparse -import sys +import multiprocessing import os +import sys + import nose2 -import multiprocessing from infra.basetest import BRConfigTest -- 2.30.2