Skip to content

Commit 54cb87f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 432474a commit 54cb87f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

other/lfu_cache.py

-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,6 @@ class LFUCache(Generic[T, U]):
199199
# class variable to map the decorator functions to their respective instance
200200
decorator_function_to_instance_map: dict[Callable[[T], U], LFUCache[T, U]] = {} # noqa: RUF012
201201

202-
203202
def __init__(self, capacity: int):
204203
self.list: DoubleLinkedList[T, U] = DoubleLinkedList()
205204
self.capacity = capacity

0 commit comments

Comments
 (0)