Skip to content

Commit 491a2c9

Browse files
fix: rm further lingering changes from other commit
1 parent 0ee7dd5 commit 491a2c9

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/dve/reporting/excel_report.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,15 +137,14 @@ def _add_submission_info(self, status: str, summary: Worksheet):
137137
summary.append(["", "Status", status])
138138

139139
for key, value in self.summary_dict.items():
140-
summary.append(["", key, str(value)])
141140
if key == "Reporting Period End":
142141
_rp_end_value = datetime.strptime(value, "%Y-%m-%d %H:%M:%S")
143142
value = (
144143
_rp_end_value
145144
if _rp_end_value.hour != 0 \
146145
else _rp_end_value + timedelta(hours=23, minutes=59, seconds=59)
147146
)
148-
summary.append(["", _key_renames.get(key, key), str(value)])
147+
summary.append(["", key, str(value)])
149148

150149
summary.append(["", ""])
151150

0 commit comments

Comments
 (0)