From b09250e92162cde1c8b2978bb1987d03f7459068 Mon Sep 17 00:00:00 2001 From: Rubel Date: Fri, 24 Nov 2023 19:07:03 +0100 Subject: [PATCH] RB --- pynxtools/dataconverter/convert.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pynxtools/dataconverter/convert.py b/pynxtools/dataconverter/convert.py index ff3ea6b66..ee25ad9c5 100644 --- a/pynxtools/dataconverter/convert.py +++ b/pynxtools/dataconverter/convert.py @@ -158,7 +158,7 @@ def transfer_data_into_template(input_file, # pylint: disable=too-many-arguments,too-many-locals -def convert(input_file: Tuple[str], +def convert(input_file: Tuple[str, ...], reader: str, nxdl: str, output: str, @@ -311,7 +311,7 @@ def convert_cli(input_file: Tuple[str, ...], reader = "json_map" if mapping: input_file = input_file + tuple([mapping]) - convert(input_file, reader, nxdl, output, generate_template, fair, undocumented) # type: ignore + convert(input_file, reader, nxdl, output, generate_template, fair, undocumented) if __name__ == '__main__':