You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
359 B

  1. __author__ = 'Chris'
  2. from argparse import ArgumentParser
  3. from gooey import Gooey
  4. def main():
  5. """Main"""
  6. bar = 'bar'
  7. parser = ArgumentParser(description='Desc')
  8. parser.add_argument('bar', help=('bar')) ##################
  9. args = parser.parse_args()
  10. print(args)
  11. return True
  12. if __name__ == '__main__':
  13. main()