Skip to content

Commit f151745

Browse files
authored
Merge pull request #141 from intgr/fix-python3.10-compat
Fix Python 3.10 compatibility (collections.abc imports)
2 parents d8d8e93 + 49d2b8b commit f151745

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dyn/tm/services/dsf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""This module contains wrappers for interfacing with every element of a
33
Traffic Director (DSF) service.
44
"""
5-
from collections import Iterable
5+
from collections.abc import Iterable
66
from dyn.compat import force_unicode, string_types
77
from dyn.tm.utils import APIList, Active
88
from dyn.tm.errors import DynectInvalidArgumentError

0 commit comments

Comments
 (0)