Most cli programs allow specifying -- to make it so any arguments to the right of it are not treated as flags, even if they take the form of -a or --arg. Is there any way to implement this currently with argparse? For example:
# '--arg2' should be treated as a positional argument after '--'
./my_command -ab --arg2 -- arg1 --arg2 arg3