diff --git a/homeassistant/components/bond/cover.py b/homeassistant/components/bond/cover.py index 97fd3481bcb410..0e4a1dbc727831 100644 --- a/homeassistant/components/bond/cover.py +++ b/homeassistant/components/bond/cover.py @@ -8,8 +8,8 @@ from homeassistant.core import HomeAssistant from homeassistant.helpers.entity import Entity -from .bond_entity import BondEntity from .const import DOMAIN +from .entity import BondEntity from .utils import BondDevice, get_bond_devices diff --git a/homeassistant/components/bond/bond_entity.py b/homeassistant/components/bond/entity.py similarity index 100% rename from homeassistant/components/bond/bond_entity.py rename to homeassistant/components/bond/entity.py diff --git a/homeassistant/components/bond/fan.py b/homeassistant/components/bond/fan.py index 8de3a3874b00d7..b048154ba013f5 100644 --- a/homeassistant/components/bond/fan.py +++ b/homeassistant/components/bond/fan.py @@ -15,8 +15,8 @@ from homeassistant.core import HomeAssistant from homeassistant.helpers.entity import Entity -from .bond_entity import BondEntity from .const import DOMAIN +from .entity import BondEntity from .utils import BondDevice, get_bond_devices diff --git a/tests/components/bond/test_cover.py b/tests/components/bond/test_cover.py index 7c2b328b330216..b76d2e9165d461 100644 --- a/tests/components/bond/test_cover.py +++ b/tests/components/bond/test_cover.py @@ -24,7 +24,7 @@ def shades(name: str): - """Create a motorized share with given name.""" + """Create motorized shades with given name.""" return {"name": name, "type": BOND_DEVICE_TYPE_MOTORIZED_SHADES}