Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
closes #6
  • Loading branch information
pinkywafer authored May 14, 2020
1 parent 9b53823 commit 1de1e06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/calendarific/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ async def async_setup(hass, config):
hass.data[DOMAIN] = {
'apiReader': reader
}
reader.update()
return True


Expand All @@ -75,6 +74,7 @@ def __init__(self, api_key, country, state):
self._holidays = []
self.next_holidays = []
self._error_logged = False
self.update()

def get_state(self):
return "new"
Expand Down

0 comments on commit 1de1e06

Please sign in to comment.