Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Merge 43969db into 9580d8d
Browse files Browse the repository at this point in the history
  • Loading branch information
cool-RR committed Sep 26, 2020
2 parents 9580d8d + 43969db commit 35c62e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabulator/parsers/xlsx.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def __process_merged_cells(self):
merged_cell_range = str(merged_cell_range)
self.__sheet.unmerge_cells(merged_cell_range)
merged_rows = openpyxl.utils.rows_from_range(merged_cell_range)
coordinates = list(chain(*merged_rows))
coordinates = list(chain.from_iterable(merged_rows))
value = self.__sheet[coordinates[0]].value
for coordinate in coordinates:
cell = self.__sheet[coordinate]
Expand Down

0 comments on commit 35c62e7

Please sign in to comment.