Skip to content

Commit

Permalink
it's tuples 馃檮
Browse files Browse the repository at this point in the history
  • Loading branch information
hf-kklein committed May 20, 2024
1 parent 6135c2e commit 2bd8ff8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/kohlrahbi/ahb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def process_ahb_table(
ahb_table: AhbTable,
pruefi: str,
output_path: Path,
file_type: list[AhbExportFileFormat],
file_type: tuple[AhbExportFileFormat, ...],
) -> None:
"""
Process the ahb table.
Expand Down Expand Up @@ -96,7 +96,7 @@ def process_pruefi(
pruefi: str,
path_to_ahb_docx_file: Path,
output_path: Path,
file_type: list[AhbExportFileFormat],
file_type: tuple[AhbExportFileFormat, ...],
) -> None:
"""
Process one pruefi.
Expand Down Expand Up @@ -213,7 +213,7 @@ def scrape_pruefis(
pruefis: list[str],
basic_input_path: Path,
output_path: Path,
file_type: list[AhbExportFileFormat],
file_type: tuple[AhbExportFileFormat, ...],
format_version: EdifactFormatVersion,
) -> None:
"""
Expand Down
2 changes: 1 addition & 1 deletion src/kohlrahbi/ahb/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def ahb(
pruefis: list[str],
edi_energy_mirror_path: Path,
output_path: Path,
file_type: list[AhbExportFileFormat],
file_type: tuple[AhbExportFileFormat, ...],
format_version: EdifactFormatVersion | str,
assume_yes: bool, # pylint: disable=unused-argument
# it is used by the callback function of the output-path
Expand Down

0 comments on commit 2bd8ff8

Please sign in to comment.