Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjwebb committed Jun 12, 2024
1 parent 2d4c280 commit c4a6e81
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions flattentool/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
except ImportError:
SHAPELY_AND_GEOJSON_LIBRARIES_AVAILABLE = False

from openpyxl.utils.cell import _get_column_letter
from openpyxl.utils.cell import get_column_letter

from flattentool.exceptions import DataErrorWarning
from flattentool.i18n import _
Expand Down Expand Up @@ -386,11 +386,11 @@ def do_unflatten(self):
actual_heading,
", ".join(
[
_get_column_letter(x + 1)
get_column_letter(x + 1)
for x in ignoring[:-1]
]
),
_get_column_letter(ignoring[-1] + 1),
get_column_letter(ignoring[-1] + 1),
sheet_name,
),
DataErrorWarning,
Expand All @@ -404,8 +404,8 @@ def do_unflatten(self):
)
).format(
actual_heading,
_get_column_letter(ignoring[0] + 1),
_get_column_letter(ignoring[1] + 1),
get_column_letter(ignoring[0] + 1),
get_column_letter(ignoring[1] + 1),
sheet_name,
),
DataErrorWarning,
Expand All @@ -419,7 +419,7 @@ def do_unflatten(self):
)
).format(
actual_heading,
_get_column_letter(ignoring[0] + 1),
get_column_letter(ignoring[0] + 1),
sheet_name,
),
DataErrorWarning,
Expand All @@ -445,7 +445,7 @@ def do_unflatten(self):
else:
cells[header] = Cell(
line[header],
(sheet_name, _get_column_letter(k + 1), j + 2, heading),
(sheet_name, get_column_letter(k + 1), j + 2, heading),
)
unflattened = unflatten_main_with_parser(
self.parser,
Expand Down Expand Up @@ -740,7 +740,7 @@ def get_sheet_headings(self, sheet_name):
if self.vertical_orientation:
return [
cell.value
for cell in worksheet[_get_column_letter(skip_rows + 1)][
for cell in worksheet[get_column_letter(skip_rows + 1)][
configuration_line:
]
]
Expand Down Expand Up @@ -777,7 +777,7 @@ def get_sheet_lines(self, sheet_name):

worksheet = self.workbook[self.sheet_names_map[sheet_name]]
if self.vertical_orientation:
header_row = worksheet[_get_column_letter(skip_rows + 1)]
header_row = worksheet[get_column_letter(skip_rows + 1)]
remaining_rows = worksheet.iter_cols(min_col=skip_rows + header_rows + 1)
if configuration_line:
header_row = header_row[1:]
Expand Down

0 comments on commit c4a6e81

Please sign in to comment.