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/_output.py | |
parent | e9f6eef3a0961cdb0a1b823ebbfd7bc289f63cf3 (diff) | |
download | subunit-git-291b44e10e448be5439e510ef02f2fe709649b8f.tar.gz |
Sort Python import definitions with isort
Diffstat (limited to 'python/subunit/_output.py')
-rw-r--r-- | python/subunit/_output.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/python/subunit/_output.py b/python/subunit/_output.py index aa92646..8141dc9 100644 --- a/python/subunit/_output.py +++ b/python/subunit/_output.py @@ -14,19 +14,14 @@ # import datetime -from functools import partial -from optparse import ( - OptionGroup, - OptionParser, - OptionValueError, -) import sys +from functools import partial +from optparse import OptionGroup, OptionParser, OptionValueError from subunit import make_stream_binary from subunit.iso8601 import UTC from subunit.v2 import StreamResultToBytes - _FINAL_ACTIONS = frozenset([ 'exists', 'fail', |