1 Commits

Author SHA1 Message Date
ad043b5921 add raw output 3
Some checks failed
ci/woodpecker/tag/woodpecker Pipeline failed
2025-12-05 15:00:22 +01:00

View File

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