Skip to content

Commit

Permalink
Update transform.py To be able to pass *_cli_param instead of *_key, …
Browse files Browse the repository at this point in the history
…should replace
  • Loading branch information
ran-iwamoto authored Jan 29, 2025
1 parent 6ed0212 commit 8eefb1f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def apply_input_params(self, args: Namespace) -> bool:
:param args: user defined arguments.
:return: True, if validate pass or False otherwise
"""
captured = CLIArgumentProvider.capture_parameters(args, cli_prefix, False)
captured = CLIArgumentProvider.capture_parameters(args, cli_prefix, True)
self.params = self.params | captured
self.logger.info(f"parameters are : {self.params}")
return True

0 comments on commit 8eefb1f

Please sign in to comment.