I want to remove argparse arguments from code and I hope to update list of args in UI for next executions or cloning from this task.
Thank you, it is excellent solution for me!
Sure :task = Task.init(..., auto_connect_arg_parser={'arg_not_to_log': False})
This will cause all argparse to automatically be logged (and later editable) with the exception of the argument arg_not_to_log
Notice that if you have --arg-something, to exclude it add to the dict arg_something': False
Hi ApprehensiveFox95
You mean from code remove the argparse arguments ?
Or post execution in the UI?