Skip to content

Commit f331c56

Browse files
authored
Added keep_links=False (pandas-dev#27115)
1 parent dd11fc2 commit f331c56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/excel/_openpyxl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ def _workbook_class(self):
482482
def load_workbook(self, filepath_or_buffer: FilePathOrBuffer):
483483
from openpyxl import load_workbook
484484
return load_workbook(filepath_or_buffer,
485-
read_only=True, data_only=True)
485+
read_only=True, data_only=True, keep_links=False)
486486

487487
@property
488488
def sheet_names(self) -> List[str]:

0 commit comments

Comments
 (0)