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_templite.py | |
parent | 65b5830a4d13d65c3bb314dd4894d565a16ceb9b (diff) | |
download | python-coveragepy-git-2faae252d853572cf7403528075461569ac137d1.tar.gz |
style: correct placement of auto-added pytest imports
Diffstat (limited to 'tests/test_templite.py')
-rw-r--r-- | tests/test_templite.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_templite.py b/tests/test_templite.py index 2879f99d..8d808554 100644 --- a/tests/test_templite.py +++ b/tests/test_templite.py @@ -6,10 +6,11 @@ import re +import pytest + from coverage.templite import Templite, TempliteSyntaxError, TempliteValueError from tests.coveragetest import CoverageTest -import pytest # pylint: disable=possibly-unused-variable |