From 73c0bd1839751352a6fd732c98e5f89bbfc0f8e5 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Fri, 3 Nov 2023 14:39:31 +0100 Subject: [PATCH] add safety catch --- changedetectionio/importer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/changedetectionio/importer.py b/changedetectionio/importer.py index c8f8d475..2e8aea5e 100644 --- a/changedetectionio/importer.py +++ b/changedetectionio/importer.py @@ -162,6 +162,8 @@ class import_xlsx_wachete(Importer): extras = {} data = {} for cell in row: + if not cell.value: + continue column_title = wb.active.cell(row=1, column=cell.column).value.strip().lower() data[column_title] = cell.value