Skip to content

Commit a9e12ca

Browse files
authored
fix: remove problematic code (#189)
1 parent 2328c62 commit a9e12ca

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

roborock/containers.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)