Skip to content

Commit c0edddd

Browse files
andyfafftwiecki
authored andcommitted
MAINT: import from collections.abc (#3560)
* MAINT: import from collections.abc * MAINT: split collections import
1 parent 5c7b752 commit c0edddd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pymc3/sampling.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
if TYPE_CHECKING:
33
from typing import Any
44
from typing import Iterable as TIterable
5-
from collections import defaultdict, Iterable
5+
from collections.abc import Iterable
6+
from collections import defaultdict
67
from copy import copy
78
import pickle
89
import logging

0 commit comments

Comments
 (0)