From 902b8f76c6855df3884f82cac4a75d3baf715fda Mon Sep 17 00:00:00 2001 From: Iron Man Date: Tue, 23 Apr 2024 19:07:53 +0200 Subject: [PATCH] Update __init__.py Missing white space after ',' --- esphome/components/ds248x/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/ds248x/__init__.py b/esphome/components/ds248x/__init__.py index f426f60976..05056cc7d2 100644 --- a/esphome/components/ds248x/__init__.py +++ b/esphome/components/ds248x/__init__.py @@ -16,7 +16,7 @@ CONF_STRONG_PULLUP = "strong_pullup" ds248x_ns = cg.esphome_ns.namespace("ds248x") DS248xComponent = ds248x_ns.class_("DS248xComponent", cg.PollingComponent, i2c.I2CDevice) -ds248xType = ds248x_ns.enum("DS248xType",is_class=True) +ds248xType = ds248x_ns.enum("DS248xType", is_class=True) DS248X_TYPES = { "ds2482-100": ds248xType.DS2482_100,