Skip to content

Commit cbca879

Browse files
committed
We were using collections.abc in some places where we should have been using typing.
1 parent a84fe85 commit cbca879

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/selfie-lib/selfie_lib/ArrayMap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from abc import ABC, abstractmethod
2-
from collections.abc import ItemsView, Iterator, Mapping, Set
3-
from typing import Any, List, Tuple, TypeVar, Union
2+
from collections.abc import Set
3+
from typing import Any, ItemsView, Iterator, List, Mapping, Tuple, TypeVar, Union
44

55
T = TypeVar("T")
66
V = TypeVar("V")

0 commit comments

Comments
 (0)