From 35e22a828ed0203e07eca71f7a2d5ebcfc378005 Mon Sep 17 00:00:00 2001 From: Paul Wieland
Date: Wed, 17 Apr 2024 18:33:03 -0400 Subject: [PATCH] Update __init__.py --- components/ratgdo/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/components/ratgdo/__init__.py b/components/ratgdo/__init__.py index 121a004..f1ce1bc 100644 --- a/components/ratgdo/__init__.py +++ b/components/ratgdo/__init__.py @@ -45,7 +45,6 @@ CONF_DRY_CONTACT_CLOSE_SENSOR = "dry_contact_close_sensor" CONF_DRY_CONTACT_SENSOR_GROUP = "dry_contact_sensor_group" def validate_protocol(config): - print("Validation") if config.get(CONF_PROTOCOL, None) == PROTOCOL_DRYCONTACT and (CONF_DRY_CONTACT_CLOSE_SENSOR not in config or CONF_DRY_CONTACT_OPEN_SENSOR not in config): raise cv.Invalid("dry_contact_close_sensor and dry_contact_open_sensor are required when using protocol drycontact") if config.get(CONF_PROTOCOL, None) != PROTOCOL_DRYCONTACT and (CONF_DRY_CONTACT_CLOSE_SENSOR in config or CONF_DRY_CONTACT_OPEN_SENSOR in config):