Skip to content

Commit

Permalink
exchange typing.Hashable with collections.abc.Hashable
Browse files Browse the repository at this point in the history
Signed-off-by: flashdagger <flashdagger@googlemail.com>
  • Loading branch information
flashdagger committed Nov 4, 2023
1 parent 8838e78 commit 1de4940
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion zammadoo/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
# -*- coding: UTF-8 -*-

from collections import OrderedDict
from collections.abc import Hashable
from itertools import islice
from typing import Callable, Generic, Hashable, TypeVar
from typing import Callable, Generic, TypeVar

_T = TypeVar("_T")

Expand Down

0 comments on commit 1de4940

Please sign in to comment.