in nubia/internal/nubia.py [0:0]
def _parse_args(self, cli_args=sys.argv):
cli_args = cli_args[1:] # remove binary name
args, extra = self._opts_parser.parse_known_args(args=cli_args)
# this allows subcommand specific args to be inserted anywhere in the
# cli, for instance:
# my_prog --atonce=5 -vv -t <tier> status --stderr
# It essentially puts all unrecognized args in the end of the cli
# invocation and try parsing again
if extra:
for extra_arg in extra:
cli_args.remove(extra_arg)
cli_args.append(extra_arg)
args = self._opts_parser.parse_args(args=cli_args)
return args