This commit is contained in:
Lucas Verney 2021-05-16 15:02:20 +02:00
부모 c463b468e8
커밋 2358bc42c5
1개의 변경된 파일8개의 추가작업 그리고 2개의 파일을 삭제

파일 보기

@ -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} "