updated apps

This commit is contained in:
2026-07-14 23:57:03 -04:00
parent 6cc7212cef
commit 010e828e9c
797 changed files with 45153 additions and 4246 deletions
@@ -2,7 +2,6 @@ from functools import partial
import json
import logging
import os
import re
from typing import Any, cast
from homeassistant.core import HomeAssistant
@@ -154,8 +153,7 @@ class LocalLoader(Loader):
manufacturer = manufacturer_dir.lower()
for model_dir in next(os.walk(manufacturer_path))[1]:
pattern = re.compile(r"^\..*")
if pattern.match(model_dir):
if model_dir.startswith("."):
continue
model_path = os.path.join(manufacturer_path, model_dir)