summaryrefslogtreecommitdiff
path: root/python/subunit/_output.py
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@jelmer.uk>2023-01-31 19:08:26 +0000
committerJelmer Vernooij <jelmer@jelmer.uk>2023-01-31 19:53:38 +0000
commit291b44e10e448be5439e510ef02f2fe709649b8f (patch)
treeab85339cda13dfcdaec84e98c41600d379125e80 /python/subunit/_output.py
parente9f6eef3a0961cdb0a1b823ebbfd7bc289f63cf3 (diff)
downloadsubunit-git-291b44e10e448be5439e510ef02f2fe709649b8f.tar.gz
Sort Python import definitions with isort
Diffstat (limited to 'python/subunit/_output.py')
-rw-r--r--python/subunit/_output.py9
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',