From a0c1c2aab19ff844e59eadc80c8f73f8d7a74829 Mon Sep 17 00:00:00 2001 From: SebRut Date: Sat, 13 Jul 2019 12:25:40 +0200 Subject: [PATCH] fix #5 --- custom_components/grocy/__init__.py | 1 - custom_components/grocy/const.py | 2 +- tracker.json | 4 ++-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/custom_components/grocy/__init__.py b/custom_components/grocy/__init__.py index 39ffe30..10f0584 100644 --- a/custom_components/grocy/__init__.py +++ b/custom_components/grocy/__init__.py @@ -79,7 +79,6 @@ async def async_setup(hass, config): for entry in platform_config: entry_config = entry - _LOGGER.critical(entry_config) # If entry is not enabled, skip. if not entry_config[CONF_ENABLED]: diff --git a/custom_components/grocy/const.py b/custom_components/grocy/const.py index 63cb05f..5421ef0 100644 --- a/custom_components/grocy/const.py +++ b/custom_components/grocy/const.py @@ -2,7 +2,7 @@ # Base component constants DOMAIN = "grocy" DOMAIN_DATA = "{}_data".format(DOMAIN) -VERSION = "0.1.2" +VERSION = "0.1.3" PLATFORMS = ["sensor"] REQUIRED_FILES = [ "const.py", diff --git a/tracker.json b/tracker.json index 2c114ae..509705a 100644 --- a/tracker.json +++ b/tracker.json @@ -1,7 +1,7 @@ { "grocy": { - "updated_at": "2019-06-29", - "version": "0.1.2", + "updated_at": "2019-07-13", + "version": "0.1.3", "local_location": "/custom_components/grocy/__init__.py", "remote_location": "https://raw.githubusercontent.com/custom-components/grocy/master/custom_components/grocy/__init__.py", "visit_repo": "https://github.com/custom-components/grocy",