mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
Fix for int defaults
This commit is contained in:
parent
24cce1bd2a
commit
20f358ebe5
@ -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":
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user