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 <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Yegor Yefremov 2020-02-13 11:09:05 +01:00 committed by Peter Korsgaard
parent 7868fa78d8
commit 5abe7e4ce3

View File

@ -1,9 +1,10 @@
#!/usr/bin/env python3
import argparse
import sys
import os
import nose2
import multiprocessing
import os
import sys
import nose2
from infra.basetest import BRConfigTest