From 4ea850a695e3ab8e42d400dc9dceaebea9246081 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 5 Jan 2023 06:31:02 -0500 Subject: mypy: use __future__ uniformly in checked files --- tests/test_annotate.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/test_annotate.py') diff --git a/tests/test_annotate.py b/tests/test_annotate.py index 99ce2694..257094f7 100644 --- a/tests/test_annotate.py +++ b/tests/test_annotate.py @@ -3,6 +3,8 @@ """Tests for annotation from coverage.py.""" +from __future__ import annotations + import coverage from tests.coveragetest import CoverageTest -- cgit v1.2.1