mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix collections.deque import in compat module
This commit is contained in:
parent
846ee7e85f
commit
a978d7f283
2 changed files with 3 additions and 3 deletions
|
@ -82,6 +82,7 @@ import pwd
|
|||
import platform
|
||||
import errno
|
||||
import datetime
|
||||
from collections import deque
|
||||
from itertools import chain, repeat
|
||||
|
||||
try:
|
||||
|
@ -148,7 +149,6 @@ except Exception:
|
|||
pass
|
||||
|
||||
from ansible.module_utils.common._collections_compat import (
|
||||
deque,
|
||||
KeysView,
|
||||
Mapping, MutableMapping,
|
||||
Sequence, MutableSequence,
|
||||
|
|
|
@ -14,7 +14,7 @@ __metaclass__ = type
|
|||
try:
|
||||
"""Python 3.3+ branch."""
|
||||
from collections.abc import (
|
||||
deque, KeysView,
|
||||
KeysView,
|
||||
Mapping, MutableMapping,
|
||||
Sequence, MutableSequence,
|
||||
Set, MutableSet,
|
||||
|
@ -22,7 +22,7 @@ try:
|
|||
except ImportError:
|
||||
"""Use old lib location under 2.6-3.2."""
|
||||
from collections import (
|
||||
deque, KeysView,
|
||||
KeysView,
|
||||
Mapping, MutableMapping,
|
||||
Sequence, MutableSequence,
|
||||
Set, MutableSet,
|
||||
|
|
Loading…
Reference in a new issue