diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-05 06:31:02 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-05 12:55:16 -0500 |
| commit | 4ea850a695e3ab8e42d400dc9dceaebea9246081 (patch) | |
| tree | 0f047e4db3087212060eb54e95e4adf8760e6fb8 /tests/test_xml.py | |
| parent | 097e13177ecc97638426a8e3a276ddeaae5422a1 (diff) | |
| download | python-coveragepy-git-4ea850a695e3ab8e42d400dc9dceaebea9246081.tar.gz | |
mypy: use __future__ uniformly in checked files
Diffstat (limited to 'tests/test_xml.py')
| -rw-r--r-- | tests/test_xml.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_xml.py b/tests/test_xml.py index 9461091d..a6a15281 100644 --- a/tests/test_xml.py +++ b/tests/test_xml.py @@ -3,6 +3,8 @@ """Tests for XML reports from coverage.py.""" +from __future__ import annotations + import os import os.path import re |
