8000 DEP: bump min version of openpyxl to 3.0.0 #39603 by fangchenli · Pull Request #39702 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DEP: bump min version of openpyxl to 3.0.0 #39603 #39702

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Feb 15, 2021
Prev Previous commit
fix typo
  • Loading branch information
fangchenli committed Feb 15, 2021
commit 006e4ae8b15da3f0fb4cac9ae24ba44e8fcc0ad0
2 changes: 1 addition & 1 deletion pandas/io/excel/_openpyxl.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ def _convert_cell(self, cell, convert_float: bool) -> Scalar:

def get_sheet_data(self, sheet, convert_float: bool) -> List[List[Scalar]]:

ifself.book.read_only:
if self.book.read_only:
sheet.reset_dimensions()

data: List[List[Scalar]] = []
Expand Down
0