aboutsummaryrefslogtreecommitdiffhomepage
path: root/libs/rich/_lru_cache.py
diff options
context:
space:
mode:
Diffstat (limited to 'libs/rich/_lru_cache.py')
-rw-r--r--libs/rich/_lru_cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/rich/_lru_cache.py b/libs/rich/_lru_cache.py
index b77c337ca..b7bf2ce1a 100644
--- a/libs/rich/_lru_cache.py
+++ b/libs/rich/_lru_cache.py
@@ -6,7 +6,7 @@ CacheKey = TypeVar("CacheKey")
CacheValue = TypeVar("CacheValue")
-class LRUCache(Generic[CacheKey, CacheValue], OrderedDict):
+class LRUCache(Generic[CacheKey, CacheValue], OrderedDict): # type: ignore # https://github.com/python/mypy/issues/6904
"""
A dictionary-like container that stores a given maximum items.