From 8c65f6623cf320f6942f0a8db0ca092f65079f33 Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Tue, 3 Sep 2024 13:28:39 -0600 Subject: [PATCH] Add from __future__ import annotations to hypothesis_helpers.py --- array_api_tests/hypothesis_helpers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/array_api_tests/hypothesis_helpers.py b/array_api_tests/hypothesis_helpers.py index 54255cb4..eeb470f7 100644 --- a/array_api_tests/hypothesis_helpers.py +++ b/array_api_tests/hypothesis_helpers.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import re from contextlib import contextmanager from functools import reduce, wraps