Fix supported_features in Ecovacs vacuum (#69906)
* Revert _attr_supported_features from Ecovacs * Override supported_features property * Remove space
This commit is contained in:
parent
e00a010560
commit
ddb6e37a5c
1 changed files with 5 additions and 0 deletions
|
@ -111,6 +111,11 @@ class EcovacsVacuum(VacuumEntity):
|
|||
"""Return the name of the device."""
|
||||
return self._name
|
||||
|
||||
@property
|
||||
def supported_features(self) -> int:
|
||||
"""Flag vacuum cleaner features that are supported."""
|
||||
return self._attr_supported_features
|
||||
|
||||
@property
|
||||
def status(self):
|
||||
"""Return the status of the vacuum cleaner."""
|
||||
|
|
Loading…
Add table
Reference in a new issue