We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Try running collect_stata without arguments. Maybe adding this before args = parser.parse_args() helps? if args is None: parser.print_help() sys.exit(1)
Try running
collect_stata
without arguments.
Maybe adding this before args = parser.parse_args() helps?
args = parser.parse_args()
if args is None: parser.print_help() sys.exit(1)
main() is not called with arguments and does not need arguments. try
def main(): """The main routine.""" parser = argparse.ArgumentParser(description="Get input and output information") parser.add_argument("-i", "--input", help="get input path") parser.add_argument("-o", "--output", help="get output path") if len(sys.argv) == 1: parser.print_help() sys.exit(1)
Also see my other comment. Check if the arguments make sense and give feedback accordingly.
Originally posted by @hansendx in #11 (comment)
The text was updated successfully, but these errors were encountered:
fix issues
30c3b40
No branches or pull requests
main() is not called with arguments and does not need arguments.
try
Also see my other comment.
Check if the arguments make sense and give feedback accordingly.
Originally posted by @hansendx in #11 (comment)
The text was updated successfully, but these errors were encountered: