mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 03:00:23 -07:00
Merge pull request #10688 from ianzd/devel
Import StringIO from six in a couple more places.
This commit is contained in:
commit
b0479c425b
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
# from python and deps
|
# from python and deps
|
||||||
from cStringIO import StringIO
|
from six.moves import StringIO
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import shlex
|
import shlex
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
from StringIO import StringIO
|
from six.moves import StringIO
|
||||||
from collections import Sequence, Set, Mapping
|
from collections import Sequence, Set, Mapping
|
||||||
|
|
||||||
from ansible.compat.tests import unittest
|
from ansible.compat.tests import unittest
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue