Skip to content
Snippets Groups Projects

XLSX-Konverter: Bessere Fehlermeldung bei inkorrektem Typ in Spalte, zusätzlicher Spalte

Merged I. Nüske requested to merge f-xlsx-converter-error-messages into dev
All threads resolved!
Files
3
@@ -54,9 +54,9 @@ def _column_id_to_chars(num):
return _column_id_to_chars(int(num / 26) - 1) + chr(int(num % 26) + 65)
def _format_exception_table(exceptions: list(tuple), worksheet_title: str,
column_names: Optional[dict, list] = None,
max_line_length: Optional[int] = 120) -> str:
def _format_exception_table(exceptions: list[tuple], worksheet_title: str,
column_names: Optional[Union[dict, list]] = None,
max_line_length: int = 120) -> str:
"""
Given a list of tuples containing a row and column number as well as an
exception in that order, and the title of the current worksheet, returns
@@ -77,7 +77,7 @@ def _format_exception_table(exceptions: list(tuple), worksheet_title: str,
column_names[column_num] should return the name of
column column_names.
If given, exceptions will be clustered by column.
max_line_length: int
max_line_length: int, default=120
Soft cap for the line length of the resulting table
Return
@@ -382,7 +382,7 @@ class XLSXConverter:
raise
self._errors[(sheet.title, row_idx)] = kerr.definitions
if exceptions != []:
if exceptions:
exception_table = _format_exception_table(exceptions, sheet.title,
col_names)
raise jsonschema.ValidationError(exception_table)
Loading