We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad5d7ef commit f08a118Copy full SHA for f08a118
changedetectionio/processors/restock_diff/processor.py
@@ -40,7 +40,7 @@ def _deduplicate_prices(data):
40
41
if isinstance(datum.value, list):
42
# Process each item in the list
43
- normalized_value = set([float(re.sub(r'[^\d.]', '', str(item))) for item in datum.value])
+ normalized_value = set([float(re.sub(r'[^\d.]', '', str(item))) for item in datum.value if str(item).strip()])
44
unique_data.update(normalized_value)
45
else:
46
# Process single value
0 commit comments