Skip to content

Commit

Permalink
Merge pull request #24 from robbinjanssen/rja/v1.4.0
Browse files Browse the repository at this point in the history
Fix time period
  • Loading branch information
robbinjanssen authored May 17, 2020
2 parents 9da538c + 1f3ca46 commit 8bd6876
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/omnik_inverter/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import re
import pickle

VERSION = '1.4.0'
VERSION = '1.4.1'

CONF_CACHE_POWER_TODAY = 'cache_power_today'
CONF_USE_JSON = 'use_json'
Expand All @@ -47,7 +47,7 @@
vol.Required(CONF_HOST): cv.string,
vol.Optional(CONF_CACHE_POWER_TODAY, default=True): cv.boolean,
vol.Optional(CONF_USE_JSON, default=False): cv.boolean,
vol.Optional(CONF_SCAN_INTERVAL, default=300): cv.time_period_seconds
vol.Optional(CONF_SCAN_INTERVAL, default=300): cv.time_period
})


Expand Down

0 comments on commit 8bd6876

Please sign in to comment.