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_execfile.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/test_execfile.py') diff --git a/tests/test_execfile.py b/tests/test_execfile.py index 229d8d95..0b6afa61 100644 --- a/tests/test_execfile.py +++ b/tests/test_execfile.py @@ -3,6 +3,8 @@ """Tests for coverage.execfile""" +from __future__ import annotations + import compileall import json import os -- cgit v1.2.1