From 769f5839e0b332ab20d5ceea6711b92d70ba6035 Mon Sep 17 00:00:00 2001 From: clydebarrow <2366188+clydebarrow@users.noreply.github.com> Date: Sun, 23 Feb 2025 18:24:19 +1100 Subject: [PATCH] pylint --- esphome/components/font/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/font/__init__.py b/esphome/components/font/__init__.py index de0d41fdb5..f3bd98b2e0 100644 --- a/esphome/components/font/__init__.py +++ b/esphome/components/font/__init__.py @@ -71,7 +71,7 @@ class FontCache(MutableMapping): return f"file:{value[CONF_PATH]}" def __init__(self, *args, **kwargs): - self.store = dict() + self.store = {} self.update(dict(*args, **kwargs)) def __delitem__(self, key):