Skip to content
This repository was archived by the owner on Jun 3, 2025. It is now read-only.

Commit 35ec7ad

Browse files
authored
Update: line 247 of nm_argparser_.py for compatibility with python3.6 (#397)
1 parent efb8b71 commit 35ec7ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integrations/pytorch/argparser_/nm_argparser_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def parse_args_into_dataclasses(
244244
# additional namespace.
245245
outputs.append(namespace)
246246
if return_remaining_strings:
247-
return *outputs, remaining_args
247+
return (*outputs, remaining_args)
248248
else:
249249
if remaining_args:
250250
raise ValueError(

0 commit comments

Comments
 (0)