Skip to content

Commit 60014b6

Browse files
authored
Rename misspelled service python files (#155909)
1 parent 3b57cab commit 60014b6

File tree

8 files changed

+5
-5
lines changed

8 files changed

+5
-5
lines changed

homeassistant/components/music_assistant/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
async_delete_issue,
2727
)
2828

29-
from .actions import get_music_assistant_client, register_actions
3029
from .const import ATTR_CONF_EXPOSE_PLAYER_TO_HA, DOMAIN, LOGGER
30+
from .services import get_music_assistant_client, register_actions
3131

3232
if TYPE_CHECKING:
3333
from music_assistant_models.event import MassEvent

tests/components/music_assistant/test_actions.py renamed to tests/components/music_assistant/test_services.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
import pytest
77
from syrupy.assertion import SnapshotAssertion
88

9-
from homeassistant.components.music_assistant.actions import (
10-
SERVICE_GET_LIBRARY,
11-
SERVICE_SEARCH,
12-
)
139
from homeassistant.components.music_assistant.const import (
1410
ATTR_FAVORITE,
1511
ATTR_MEDIA_TYPE,
1612
ATTR_SEARCH_NAME,
1713
DOMAIN,
1814
)
15+
from homeassistant.components.music_assistant.services import (
16+
SERVICE_GET_LIBRARY,
17+
SERVICE_SEARCH,
18+
)
1919
from homeassistant.const import ATTR_CONFIG_ENTRY_ID
2020
from homeassistant.core import HomeAssistant
2121

File renamed without changes.

0 commit comments

Comments
 (0)