Skip to content

Commit

Permalink
Update get_weboutputs.py to cope with sheet names with spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
cc-a committed May 9, 2024
1 parent 1e228a0 commit d32e01b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scripts/get_weboutputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

def get_cells(ref, workbook):
sheet, cells = ref.split("!")
sheet = sheet.strip("'")
return workbook[sheet][cells]


Expand Down

0 comments on commit d32e01b

Please sign in to comment.