File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 15
15
from zigpy .zcl import foundation
16
16
from zigpy .zcl .clusters .hvac import Thermostat
17
17
18
- from zhaquirks .tuya import TUYA_MCU_VERSION_RSP , TUYA_SET_TIME , TuyaTimePayload
18
+ from zhaquirks .tuya import TUYA_SET_TIME , TuyaTimePayload
19
19
from zhaquirks .tuya .builder import TuyaQuirkBuilder
20
20
from zhaquirks .tuya .mcu import TuyaAttributesCluster , TuyaMCUCluster
21
21
@@ -132,8 +132,12 @@ class NoManufTimeNoVersionRespTuyaMCUCluster(TuyaMCUCluster):
132
132
}
133
133
)
134
134
135
- client_commands = copy .deepcopy (TuyaMCUCluster .client_commands )
136
- client_commands .pop (TUYA_MCU_VERSION_RSP )
135
+ def handle_mcu_version_response (
136
+ self , payload : TuyaMCUCluster .MCUVersion
137
+ ) -> foundation .Status :
138
+ """Handle MCU version response."""
139
+
140
+ return foundation .Status .SUCCESS
137
141
138
142
139
143
(
You can’t perform that action at this time.
0 commit comments