Skip to content

Commit

Permalink
v0.0.20 services are now underscored. hopefully this is the last chan…
Browse files Browse the repository at this point in the history
…ge to the service names. entity names are still open.
  • Loading branch information
jeroenterheerdt committed May 28, 2020
1 parent 60778b5 commit 81a27c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions custom_components/smart_irrigation/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry):
elevation = hass.config.as_dict().get(CONF_ELEVATION)

name = entry.title
name = name.replace(" ", "_")

# handle options: lead time, max duration, force_mode_duration, show units, auto refresh, auto refresh time
lead_time = entry.options.get(CONF_LEAD_TIME, 0)
Expand Down
2 changes: 1 addition & 1 deletion custom_components/smart_irrigation/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
DOMAIN = "smart_irrigation"
NAME = "Smart Irrigation"
DOMAIN_DATA = f"{DOMAIN}_data"
VERSION = "0.0.19"
VERSION = "0.0.20"

ISSUE_URL = "https://github.com/jeroenterheerdt/HASmartIrrigation/issues"

Expand Down

0 comments on commit 81a27c6

Please sign in to comment.