Skip to content

Commit ebcceeb

Browse files
refactor: add extra clarification to the units presented in the file size row of the error report
1 parent b38d430 commit ebcceeb

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/dve/reporting/excel_report.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,11 @@ def _add_submission_info(self, status: str, summary: Worksheet):
135135
if "Status" not in self.summary_dict:
136136
summary.append(["", "Status", status])
137137

138+
_key_renames = {
139+
"File Size": "File Size (Bytes)",
140+
}
138141
for key, value in self.summary_dict.items():
139-
summary.append(["", key, str(value)])
142+
summary.append(["", _key_renames.get(key, key), str(value)])
140143

141144
summary.append(["", ""])
142145

0 commit comments

Comments
 (0)