Skip to content

Commit 39071e6

Browse files
trentzzchristianfares
authored andcommitted
Fixed sheet name shortening from 32 to 31 as required
1 parent bfa5e88 commit 39071e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mitylib/report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,5 +530,5 @@ def run(self) -> None:
530530
"sheet_name: %s was too long and was automatically shortened",
531531
sheet_name,
532532
)
533-
sheet_name = sheet_name[:32]
533+
sheet_name = sheet_name[:31]
534534
df.to_excel(writer, sheet_name=sheet_name, index=False)

0 commit comments

Comments
 (0)