File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -21,15 +21,19 @@ def manufacturer(self) -> str:
2121
2222 @manufacturer .setter
2323 def manufacturer (self , value : str ) -> None :
24- pass # Read-only for coordinator
24+ # Setter required to match parent class interface (which has read-write properties)
25+ # but intentionally does nothing since coordinator manufacturer is hardware-determined
26+ pass
2527
2628 @property
2729 def model (self ) -> str :
2830 return "Coordinator"
2931
3032 @model .setter
3133 def model (self , value : str ) -> None :
32- pass # Read-only for coordinator
34+ # Setter required to match parent class interface (which has read-write properties)
35+ # but intentionally does nothing since coordinator model is hardware-determined
36+ pass
3337
3438 async def request (
3539 self ,
You can’t perform that action at this time.
0 commit comments