This commit is contained in:
Ken Van Hoeylandt 2026-01-22 21:50:54 +01:00
parent 5ceadc4ebf
commit d1dcae0c50
2 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ def find_binding(compatible: str, bindings: list[Binding]) -> Binding:
return binding
return None
def property_to_string(property: Property) -> str:
def property_to_string(property: DeviceProperty) -> str:
type = property.type
if type == "value":
return property.value

View File

@ -11,7 +11,7 @@ class Device:
devices: list
@dataclass
class Property:
class DeviceProperty:
name: str
type: str
value: object