We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2328c62 commit a9e12caCopy full SHA for a9e12ca
1 file changed
roborock/containers.py
@@ -221,9 +221,11 @@ class HomeDataDevice(RoborockBase):
221
f: bool | None = None
222
device_features: DeviceFeatures | None = None
223
224
- def __post_init__(self):
225
- if self.feature_set is not None and self.new_feature_set is not None and self.new_feature_set != "":
226
- self.device_features = build_device_features(self.feature_set, self.new_feature_set)
+ # seemingly not just str like I thought - example: '0000000000002000' and '0000000000002F63'
+
+ # def __post_init__(self):
227
+ # if self.feature_set is not None and self.new_feature_set is not None and self.new_feature_set != "":
228
+ # self.device_features = build_device_features(self.feature_set, self.new_feature_set)
229
230
231
@dataclass
0 commit comments