diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-01-31 09:18:40 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-01-31 10:08:59 -0500 |
commit | 2faae252d853572cf7403528075461569ac137d1 (patch) | |
tree | 609cef41369533ee7950f67c8054ceb778387ea6 /tests/test_concurrency.py | |
parent | 65b5830a4d13d65c3bb314dd4894d565a16ceb9b (diff) | |
download | python-coveragepy-git-2faae252d853572cf7403528075461569ac137d1.tar.gz |
style: correct placement of auto-added pytest imports
Diffstat (limited to 'tests/test_concurrency.py')
-rw-r--r-- | tests/test_concurrency.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py index cc9622d1..fd7aa851 100644 --- a/tests/test_concurrency.py +++ b/tests/test_concurrency.py @@ -6,6 +6,7 @@ import glob import os import random +import re import sys import threading import time @@ -20,7 +21,6 @@ from coverage.files import abs_file from tests.coveragetest import CoverageTest from tests.helpers import remove_files -import re # These libraries aren't always available, we'll skip tests if they aren't. |