File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -221,9 +221,11 @@ class HomeDataDevice(RoborockBase):
221221 f : bool | None = None
222222 device_features : DeviceFeatures | None = None
223223
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 )
224+ # seemingly not just str like I thought - example: '0000000000002000' and '0000000000002F63'
225+
226+ # 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)
227229
228230
229231@dataclass
You can’t perform that action at this time.
0 commit comments