Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions f8a_report/report_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,8 +395,8 @@ def normalize_worker_data(self, start_date, end_date, stack_data, worker, freque
}

today = dt.today()
# Invoke this every Monday. In Python, Monday is 0 and Sunday is 6
if today.weekday() == 0:
# Invoke this every Wednesday. In Python, Monday is 0 and Sunday is 6
if today.weekday() == 2:
# Collate Data from Previous Month for Model Retraining
collated_data = self.collate_raw_data(unique_stacks_with_recurrence_count,
'weekly')
Expand Down