Skip to content

Commit

Permalink
no limit at all!
Browse files Browse the repository at this point in the history
  • Loading branch information
dsh0416 committed Jun 16, 2024
1 parent 4d2310e commit d0cf68b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions miio/integrations/roidmi/vacuum/roidmivacuum_miot.py
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,6 @@ def status(self) -> RoidmiVacuumStatus:
return RoidmiVacuumStatus(
{
prop["did"]: prop["value"] if prop["code"] == 0 else None
# max_properties limmit to 10 to avoid "Checksum error" messages from the device.
for prop in self.get_properties_for_mapping()
}
)
Expand All @@ -569,7 +568,6 @@ def consumable_status(self) -> RoidmiConsumableStatus:
return RoidmiConsumableStatus(
{
prop["did"]: prop["value"] if prop["code"] == 0 else None
# max_properties limmit to 10 to avoid "Checksum error" messages from the device.
for prop in self.get_properties_for_mapping()
}
)
Expand All @@ -580,7 +578,6 @@ def cleaning_summary(self) -> RoidmiCleaningSummary:
return RoidmiCleaningSummary(
{
prop["did"]: prop["value"] if prop["code"] == 0 else None
# max_properties limmit to 10 to avoid "Checksum error" messages from the device.
for prop in self.get_properties_for_mapping()
}
)
Expand Down

0 comments on commit d0cf68b

Please sign in to comment.