Fix mypy error
This commit is contained in:
parent
418469cda7
commit
e19ab3e1bd
@ -31,6 +31,7 @@ from homeassistant.helpers.update_coordinator import (
|
|||||||
CoordinatorEntity,
|
CoordinatorEntity,
|
||||||
DataUpdateCoordinator,
|
DataUpdateCoordinator,
|
||||||
)
|
)
|
||||||
|
|
||||||
from . import VorwerkState
|
from . import VorwerkState
|
||||||
from .const import (
|
from .const import (
|
||||||
ATTR_CATEGORY,
|
ATTR_CATEGORY,
|
||||||
@ -99,7 +100,7 @@ class VorwerkConnectedVacuum(CoordinatorEntity, StateVacuumEntity):
|
|||||||
|
|
||||||
self._name = f"{self.robot.name}"
|
self._name = f"{self.robot.name}"
|
||||||
self._robot_serial = self.robot.serial
|
self._robot_serial = self.robot.serial
|
||||||
self._robot_boundaries: list[str] = []
|
self._robot_boundaries: list = []
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def name(self) -> str:
|
def name(self) -> str:
|
||||||
|
Loading…
Reference in New Issue
Block a user