diff options
author | Jelmer Vernooij <jelmer@jelmer.uk> | 2023-01-31 19:08:26 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@jelmer.uk> | 2023-01-31 19:53:38 +0000 |
commit | 291b44e10e448be5439e510ef02f2fe709649b8f (patch) | |
tree | ab85339cda13dfcdaec84e98c41600d379125e80 /python/subunit/run.py | |
parent | e9f6eef3a0961cdb0a1b823ebbfd7bc289f63cf3 (diff) | |
download | subunit-git-291b44e10e448be5439e510ef02f2fe709649b8f.tar.gz |
Sort Python import definitions with isort
Diffstat (limited to 'python/subunit/run.py')
-rwxr-xr-x | python/subunit/run.py | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/python/subunit/run.py b/python/subunit/run.py index 20fe86c..a69c3d6 100755 --- a/python/subunit/run.py +++ b/python/subunit/run.py @@ -25,17 +25,11 @@ import os import sys from testtools import ExtendedToStreamDecorator +from testtools.run import (BUFFEROUTPUT, CATCHBREAK, FAILFAST, USAGE_AS_MAIN, + TestProgram, list_test) from subunit import StreamResultToBytes from subunit.test_results import AutoTimingTestResultDecorator -from testtools.run import ( - BUFFEROUTPUT, - CATCHBREAK, - FAILFAST, - list_test, - TestProgram, - USAGE_AS_MAIN, - ) class SubunitTestRunner(object): |