I am using argparse and this code
parser = argparse.ArgumentParser()
parser.add_argument('-c', '--client', nargs='*', action='store', help='Client mode, connect to [ hostname/address or localhost | port or 8080 | protocol or TCP ]')
shows this on help page
-c [CLIENT [CLIENT ...]], --client [CLIENT [CLIENT ...]]
Client mode, connect to [ hostname/address or
localhost | port or 8080 | protocol or TCP ]
How can I make it more like following?
-c [host [port]], --client [host [port]]
Client mode, connect to [ hostname/address or
localhost | port or 8080 | protocol or TCP ]