pylint fix

This commit is contained in:
Pim van Pelt
2025-11-10 00:34:14 +01:00
parent 852ada3904
commit ffa0a77f5e

View File

@@ -174,9 +174,9 @@ if __name__ == "__main__":
.wasSuccessful() .wasSuccessful()
) )
RETVAL = 0 retval = 0
if not yaml_ok: if not yaml_ok:
RETVAL -= 1 retval -= 1
if not unit_ok: if not unit_ok:
RETVAL -= 2 retval -= 2
sys.exit(RETVAL) sys.exit(retval)