Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

Commit f1f9f5c

Browse files
committed
use end date in combined_payloads
1 parent 6329133 commit f1f9f5c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

combine_payloads.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55

66

77
def combine_payloads(fees_file_name: str) -> None:
8-
date_str = fees_file_name.split('_')[1].split('.')[0]
8+
# Extract the end date from the fees file name (fees_START-DATE_END-DATE.json)
9+
date_str = fees_file_name.split('_')[2].split('.')[0]
910

1011
payload_dir = Path("fee_allocator/payloads")
1112

0 commit comments

Comments
 (0)