Recently, I am learning argparse module, Argument error occurred below the code
import argparse import sys class ExecuteShell(object): def create(self, arg
argparse adds --help and -h options by default. If you don't want to use the built-in help feature, you need to disable it with:
argparse
--help
-h
parser = argparse.ArgumentParser(add_help=False)
See the documentation