mirror of
https://github.com/ansible-collections/community.docker.git
synced 2026-07-29 03:46:55 +00:00
Fix typing info. (#1183)
This commit is contained in:
@@ -556,8 +556,8 @@ def parse_events(
|
||||
stderr_lines = stderr.splitlines()
|
||||
if stderr_lines and stderr_lines[-1] == b"":
|
||||
del stderr_lines[-1]
|
||||
for index, line in enumerate(stderr_lines):
|
||||
line = to_text(line.strip())
|
||||
for index, line_b in enumerate(stderr_lines):
|
||||
line = to_text(line_b.strip())
|
||||
if not line:
|
||||
continue
|
||||
warn_missing_dry_run_prefix = False
|
||||
|
||||
Reference in New Issue
Block a user