From 7b1f1dcef7e2c34f7a047b1fb11a262d329c0bf6 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 17 Jun 2025 09:44:07 +0000 Subject: [PATCH] merge this to main --- etl/dimitra_hubspot_notes_gather.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/etl/dimitra_hubspot_notes_gather.py b/etl/dimitra_hubspot_notes_gather.py index 6d1dcc7..2d92e4a 100644 --- a/etl/dimitra_hubspot_notes_gather.py +++ b/etl/dimitra_hubspot_notes_gather.py @@ -157,8 +157,7 @@ for pipeline, deals in notes_data.items(): # Generate file name with next Monday’s date -monday = previous_monday() -formatted = monday.strftime("%d-%m-%Y Monday") +formatted = previous_monday() file_name = f"{formatted} DEAL_NOTES_FROM_HUBSPOT.xlsx" output_path = os.path.abspath(file_name) wb.save(output_path)