Skip to content

Commit 1e71b72

Browse files
authored
Update lfu_cache.py
1 parent fcadabe commit 1e71b72

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

other/lfu_cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from __future__ import annotations
22

33
from collections.abc import Callable
4-
from typing import Generic, TypeVar
4+
from typing import TypeVar
55

66
T = TypeVar("T")
77
U = TypeVar("U")

0 commit comments

Comments
 (0)