Este commit está contenido en:
Lucas Verney 2021-05-16 15:02:20 +02:00
padre c463b468e8
commit 2358bc42c5
Se han modificado 1 ficheros con 8 adiciones y 2 borrados

Ver fichero

@ -97,8 +97,14 @@ def send_notification(config, flats):
for flat in flats:
title = str(flat.title)
flat_id = str(flat.id)
area = str(int(flat.area))
cost = int(flat.cost)
try:
area = str(int(flat.area))
except (TypeError, ValueError):
area = None
try:
cost = int(flat.cost)
except (TypeError, ValueError):
cost = None
currency = str(flat.currency)
txt += f"- {title}: {website_url}#/flat/{flat_id} "