Skip to content

Commit

Permalink
RB
Browse files Browse the repository at this point in the history
  • Loading branch information
RubelMozumder committed Nov 24, 2023
1 parent de18890 commit b09250e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pynxtools/dataconverter/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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__':
Expand Down

0 comments on commit b09250e

Please sign in to comment.