How to prompt user in run configuration and not have arguments wrapped in quotes?
I am building a python click based command line app and am having problems with my run configuration.
I would like to prompt for command line arguments prior to running and have been able to do so by using the $PROMPT$. However, what gets passed to my program is whatever I typed enclosed in double quotes "".
The result is that the click app doesn't see any of the arguments.
Is there a way to prompt the user and just have the arguments passed in without being wrapped in quotes?
Please sign in to leave a comment.