We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e987c17 commit e66a91eCopy full SHA for e66a91e
roborock/containers.py
@@ -667,7 +667,7 @@ class CleanSummary(RoborockBase):
667
last_clean_t: int | None = None
668
669
def __post_init__(self) -> None:
670
- if isinstance(self.clean_area, list):
+ if isinstance(self.clean_area, list | str):
671
_LOGGER.warning(f"Clean area is a unexpected type! Please give the following in a issue: {self.clean_area}")
672
else:
673
self.square_meter_clean_area = round(self.clean_area / 1000000, 1) if self.clean_area is not None else None
0 commit comments