Skip to content

Commit

Permalink
edit width for the colum "G"
Browse files Browse the repository at this point in the history
  • Loading branch information
inerttila committed Jul 8, 2024
1 parent aab15d3 commit 8215917
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions excel.pyw
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def set_column_widths(sheet):
"D": 20, # Company
"E": 20, # Task
"F": 10, # Hours
"G": 100, # Notes
"G": 400, # Notes
}

for column, width in column_widths.items():
Expand Down Expand Up @@ -419,7 +419,7 @@ def create_sheet_with_headers(headers, rd):
"D": 20, # Company
"E": 20, # Task
"F": 10, # Hours
"G": 100, # Notes
"G": 400, # Notes
}
for column, width in column_widths.items():
new_sheet.column_dimensions[column].width = width
Expand Down

0 comments on commit 8215917

Please sign in to comment.