Fix typing info. (#1183)

This commit is contained in:
Felix Fontein
2025-11-06 07:15:05 +01:00
committed by GitHub
parent 00c480254d
commit dee138bc4b
7 changed files with 21 additions and 19 deletions
+2 -2
View File
@@ -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