Fix for int defaults

This commit is contained in:
Ken Van Hoeylandt 2026-02-08 22:43:09 +01:00
parent 24cce1bd2a
commit 20f358ebe5

View File

@ -63,6 +63,8 @@ def property_to_string(property: DeviceProperty, devices: list[Device]) -> str:
type = property.type
if type == "value":
return property.value
elif type == "int":
return property.value
elif type == "boolean":
return "true"
elif type == "text":