You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Importing flattentool causes the following error message:
ImportError: cannot import name '_get_column_letter' from 'openpyxl.utils.cell' (/usr/local/lib/python3.10/dist-packages/openpyxl/utils/cell.py)
Upon investigating the source code of openpyxl, it appears that a recent commit removed the initial underscore from _get_column_letter, renaming it to get_column_letter.
#443
There's no need for a conditional import as get_column_letter has
existed since at laest openpyxl 2.6.0, which is the earliest version we
support.
#443
There's no need for a conditional import as get_column_letter has
existed since at laest openpyxl 2.6.0, which is the earliest version we
support.
Importing flattentool causes the following error message:
Upon investigating the source code of openpyxl, it appears that a recent commit removed the initial underscore from
_get_column_letter
, renaming it toget_column_letter
.@jpmckinney
The text was updated successfully, but these errors were encountered: