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_filereporter.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/test_filereporter.py') diff --git a/tests/test_filereporter.py b/tests/test_filereporter.py index 59335309..c36fa013 100644 --- a/tests/test_filereporter.py +++ b/tests/test_filereporter.py @@ -3,6 +3,8 @@ """Tests for FileReporters""" +from __future__ import annotations + import sys from coverage.plugin import FileReporter -- cgit v1.2.1