Skip to content

Commit

Permalink
v2.0.0b12
Browse files Browse the repository at this point in the history
  • Loading branch information
Yiğit Topcu committed Feb 13, 2024
1 parent ef6cebc commit bea7bfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/dreame_vacuum/dreame/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -6233,7 +6233,7 @@ def cleaning_history(self) -> dict[str, Any] | None:
list[date] = {
ATTR_TIMESTAMP: history.date.timestamp(),
ATTR_CLEANING_TIME: f"{history.cleaning_time} min",
ATTR_CLEANED_AREA: f"{history.cleaned_area} m²",
ATTR_CLEANED_AREA: f"{history.cleaned_area} m²",
}
if history.status is not None:
list[date][ATTR_STATUS] = (
Expand Down Expand Up @@ -7069,7 +7069,7 @@ def mac_address(self) -> Optional[str]:
@property
def manufacturer(self) -> str:
"""Manufacturer name."""
return "Dreametech"
return "Dreametech™"

@property
def raw(self) -> dict[str, Any]:
Expand Down

0 comments on commit bea7bfa

Please sign in to comment.