general: Fix linter issues across the codebase

This commit is contained in:
Paweł Poławski 2024-08-22 10:43:05 +02:00 committed by Brian C. Lane
parent 77a61da760
commit db08c472f3
5 changed files with 10 additions and 10 deletions

View file

@ -1069,7 +1069,7 @@ class ManifestFile:
prob = ""
if hasattr(err, 'problem_mark'):
mark = err.problem_mark
prob = f": {err.problem} at line {mark.line+1} (col {mark.column+1})"
prob = f": {err.problem} at line {mark.line + 1} (col {mark.column + 1})"
print(f"Invalid yaml in \"{path}\"{prob}")
sys.exit(1)
else: