From 37c2d01fbb732061e2a90ba209bc1c8c18e82bb2 Mon Sep 17 00:00:00 2001 From: Evgeniy Blinov Date: Sat, 6 Jan 2024 15:37:51 +0300 Subject: [PATCH] type hint ignore comment --- awaits/pools/abstract_pool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awaits/pools/abstract_pool.py b/awaits/pools/abstract_pool.py index 3acbef9..3a0b812 100644 --- a/awaits/pools/abstract_pool.py +++ b/awaits/pools/abstract_pool.py @@ -2,7 +2,7 @@ from typing import List, Callable, Any, Optional try: - from functools import cached_property # type: ignore[attr-defined, import] + from functools import cached_property except ImportError: from cached_property import cached_property # type: ignore[import-not-found, no-redef, unused-ignore]