Display help message when no arguments are provided using Python argparse

if len(sys.argv) == 1:
    parser.print_usage(sys.stderr)
    sys.exit(1)