add raw output 3
Some checks failed
ci/woodpecker/tag/woodpecker Pipeline failed

This commit is contained in:
2025-12-05 15:00:22 +01:00
parent 7c90962de1
commit ad043b5921

View File

@@ -9,7 +9,7 @@ def floatAdaptor(i):
return float(f"{i:0.2f}") if i else 0.0
def onOffAdaptor(i):
return bool(i)
return 'on' if bool(i) else 'off'