Skip to content

Commit

Permalink
Change xlrd to openpyxl
Browse files Browse the repository at this point in the history
  • Loading branch information
mariobehling authored Jan 22, 2024
1 parent 0b3059f commit 1ba0f52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/venueless/storage/schedule_to_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def load_sheet(io):
}
return {
title: pandas.read_excel(
io, sheet_name=title, header=0, engine="xlrd", **config
io, sheet_name=title, header=0, engine="openpyxl", **config
)
for title, config in sheets.items()
}
Expand Down

0 comments on commit 1ba0f52

Please sign in to comment.