fix: Configuration creation bug due to failed Nonetype checking
Some checks failed
Docker Build and Push / docker_build (push) Has been cancelled
Docker Build and Push / docker_scan (push) Has been cancelled

This commit is contained in:
DaanSelen
2026-02-16 18:54:10 +01:00
parent 8e08d20497
commit bb18c55003
3 changed files with 12 additions and 5 deletions

View File

@@ -135,6 +135,8 @@ class DashboardConfig:
]
for table_name in tables_to_check:
if not table_name:
continue
if not inspector.has_table(table_name):
continue