Skip to content

Commit 2a9b649

Browse files
committed
Fix
1 parent 2c6a49a commit 2a9b649

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

other/lfu_cache.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ class LFUCache(Generic[T, U]):
197197
"""
198198

199199
# class variable to map the decorator functions to their respective instance
200-
decorator_function_to_instance_map: ClassVar[
200+
decorator_function_to_instance_map: ClassVar[ # type: ignore[misc]
201201
dict[Callable[[T], U], LFUCache[T, U]]
202202
] = {}
203203

other/lru_cache.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ class LRUCache(Generic[T, U]):
210210
"""
211211

212212
# class variable to map the decorator functions to their respective instance
213-
decorator_function_to_instance_map: ClassVar[
213+
decorator_function_to_instance_map: ClassVar[ # type: ignore[misc]
214214
dict[Callable[[T], U], LRUCache[T, U]]
215215
] = {}
216216

0 commit comments

Comments
 (0)