mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Clean up a few more pyflakes warnings
This commit is contained in:
parent
a17ae6f07e
commit
a526eae543
2 changed files with 8 additions and 2 deletions
|
@ -19,7 +19,13 @@
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
from ansible.errors.yaml_strings import *
|
from ansible.errors.yaml_strings import ( YAML_POSITION_DETAILS,
|
||||||
|
YAML_COMMON_UNQUOTED_VARIABLE_ERROR,
|
||||||
|
YAML_COMMON_DICT_ERROR,
|
||||||
|
YAML_COMMON_UNQUOTED_COLON_ERROR,
|
||||||
|
YAML_COMMON_PARTIALLY_QUOTED_LINE_ERROR,
|
||||||
|
YAML_COMMON_UNBALANCED_QUOTES_ERROR )
|
||||||
|
|
||||||
from ansible.utils.unicode import to_unicode, to_str
|
from ansible.utils.unicode import to_unicode, to_str
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -70,7 +70,7 @@ class WorkerProcess(multiprocessing.Process):
|
||||||
if fileno is not None:
|
if fileno is not None:
|
||||||
try:
|
try:
|
||||||
self._new_stdin = os.fdopen(os.dup(fileno))
|
self._new_stdin = os.fdopen(os.dup(fileno))
|
||||||
except OSError as e:
|
except OSError:
|
||||||
# couldn't dupe stdin, most likely because it's
|
# couldn't dupe stdin, most likely because it's
|
||||||
# not a valid file descriptor, so we just rely on
|
# not a valid file descriptor, so we just rely on
|
||||||
# using the one that was passed in
|
# using the one that was passed in
|
||||||
|
|
Loading…
Reference in a new issue