AH product unit sizes can have leading spaces

This commit is contained in:
polyfloyd 2024-12-22 18:19:16 +01:00
parent 063ac3a4fd
commit 2273253aef

View file

@ -40,7 +40,7 @@ def ah_get_by_gtin(gtin13):
units_description = ah_prod['salesUnitSize']
units = 1
if (m := re.search(r'^(\d+)', units_description)):
if (m := re.search(r'^\s*(\d+)', units_description)):
units = int(m[1])
return Product(