Skip to content

Commit

Permalink
Fix issue #185 (second one)
Browse files Browse the repository at this point in the history
  • Loading branch information
rgc99 committed Dec 9, 2024
1 parent dbc4bd3 commit bff6e51
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion custom_components/irrigation_unlimited/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@
For more details about this integration, please refer to
https://github.com/rgc99/irrigation_unlimited
"""

import logging
import voluptuous as vol
from homeassistant.helpers.entity_component import EntityComponent
from homeassistant.core import Config, HomeAssistant
from homeassistant.core import HomeAssistant
from homeassistant.core_config import Config
from homeassistant.helpers.discovery import async_load_platform

from .irrigation_unlimited import IUCoordinator
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
homeassistant==2024.9.1
homeassistant==2024.11.2
2 changes: 1 addition & 1 deletion requirements_test.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest-homeassistant-custom-component==0.13.162
pytest-homeassistant-custom-component==0.13.183
aiohttp_cors
crontab
pytest-asyncio
4 changes: 2 additions & 2 deletions tests/iu_test_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
from datetime import datetime, timedelta, timezone
from homeassistant.const import SERVICE_RELOAD
import homeassistant.core as ha
from homeassistant.config import (
load_yaml_config_file,
from homeassistant.core_config import (
async_process_ha_core_config,
)
from homeassistant.config import load_yaml_config_file
from homeassistant.setup import async_setup_component
from homeassistant.helpers.recorder import (
async_initialize_recorder,
Expand Down

0 comments on commit bff6e51

Please sign in to comment.