Skip to content

Instantly share code, notes, and snippets.

@lukecampbell
Created October 23, 2015 18:25
Show Gist options
  • Save lukecampbell/0c3700161d8a57556414 to your computer and use it in GitHub Desktop.
Save lukecampbell/0c3700161d8a57556414 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import sys
def main(args):
return 0
if __name__ == '__main__':
from argparse import ArgumentParser
parser = ArgumentParser(description=main.__doc__)
args = parser.parse_args()
sys.exit(main(args))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment