From 4e05dd835f6a1295543ab67f2066bff8d85eccfe Mon Sep 17 00:00:00 2001 From: Max Fischer Date: Sun, 25 Aug 2024 23:31:36 +0200 Subject: [PATCH] silence pyright errors --- asyncstdlib/_lrucache.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/asyncstdlib/_lrucache.py b/asyncstdlib/_lrucache.py index 58b20b3..15e2455 100644 --- a/asyncstdlib/_lrucache.py +++ b/asyncstdlib/_lrucache.py @@ -28,7 +28,9 @@ from ._utility import public_module -@public_module("asyncstdlib.functools") +@public_module( + "asyncstdlib.functools" +) # pyright: ignore[reportArgumentType,reportUntypedClassDecorator] class CacheInfo(NamedTuple): """ Metadata on the current state of a cache