This commit is contained in:
2026-01-16 19:39:45 -08:00
parent 9dce32cbe3
commit 385307c5b9
5 changed files with 47 additions and 12 deletions

View File

@@ -172,6 +172,8 @@ class ProviderRegistry:
for finder, module_name, _ in pkgutil.iter_modules(package_path):
if module_name.startswith("_"):
continue
if module_name.strip().lower() == "hifi":
continue
module_path = f"{self.package_name}.{module_name}"
try:
module = importlib.import_module(module_path)