Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Feb 2, 2025
1 parent 8067aa7 commit 66d8591
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions async_lru/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
TypedDict,
TypeVar,
Union,
cast,
final,
overload,
)
Expand Down Expand Up @@ -340,7 +339,7 @@ def alru_cache(
ttl: Optional[float] = None,
) -> Union[
Callable[[Callable[_P, Coroutine[Any, Any, _R]]], _LRUCacheWrapper[_P, _R]],
_LRUCacheWrapper[_P, _R]
_LRUCacheWrapper[_P, _R],
]:
if maxsize is None or isinstance(maxsize, int):
return _make_wrapper(maxsize, typed, ttl)
Expand Down

0 comments on commit 66d8591

Please sign in to comment.