From b84efe60606737e1b547b1dad13f8b4bd4bbf8cc Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 27 Sep 2024 15:14:03 -0400 Subject: [PATCH] Restore Python 3.8 compatibility. --- jaraco/functools/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jaraco/functools/__init__.py b/jaraco/functools/__init__.py index cf32884..d510530 100644 --- a/jaraco/functools/__init__.py +++ b/jaraco/functools/__init__.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import collections.abc import functools import inspect