1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Remove an unnecessary import from the ansiballz wrapper (#41747)

This commit is contained in:
Toshio Kuratomi 2018-06-20 19:04:55 -07:00 committed by Jordan Borean
parent c68aa804c4
commit 3ea936312a
2 changed files with 3 additions and 6 deletions

View file

@ -0,0 +1,3 @@
---
minor_changes:
- Removed an unnecessary import from the AnsiballZ wrapper

View file

@ -143,12 +143,6 @@ if sys.version_info < (3,):
else: else:
unicode = str unicode = str
PY3 = True PY3 = True
try:
# Python-2.6+
from io import BytesIO as IOStream
except ImportError:
# Python < 2.6
from StringIO import StringIO as IOStream
ZIPDATA = """%(zipdata)s""" ZIPDATA = """%(zipdata)s"""