Skip to content

Commit

Permalink
5.3.4
Browse files Browse the repository at this point in the history
Fix config flow update
Fix hassfest issues
  • Loading branch information
petergridge authored Sep 6, 2023
1 parent 7a1d227 commit a4b2a4a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions custom_components/irrigationprogram/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import asyncio
from . import utils
from pathlib import Path
from homeassistant.helpers import config_validation as cv

from homeassistant.config_entries import ConfigEntry
from homeassistant.const import (
Expand All @@ -26,6 +27,8 @@
ATTR_SHOW_CONFIG
)

CONFIG_SCHEMA = cv.empty_config_schema(DOMAIN)

_LOGGER = logging.getLogger(__name__)

async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
Expand Down
2 changes: 1 addition & 1 deletion custom_components/irrigationprogram/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"iot_class": "local_polling",
"issue_tracker": "https://github.com/petergridge/irrigation-v5/issues",
"requirements": [],
"version": "5.3.3"
"version": "5.3.4"
}

0 comments on commit a4b2a4a

Please sign in to comment.