Mercurial > hg > GlobalNeighbors
changeset 4:8e130b7bfed9
remove unintended boilerplate
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sat, 24 Jun 2017 14:48:55 -0700 |
parents | 49aae0c0293b |
children | 7e27e874655b |
files | globalneighbors/template.py |
diffstat | 1 files changed, 0 insertions(+), 32 deletions(-) [+] |
line wrap: on
line diff
--- a/globalneighbors/template.py Sat Jun 24 14:48:31 2017 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,32 +0,0 @@ -#!/usr/bin/env python - -""" -GlobalNeighbors template for makeitso -""" - -import sys -from cli import MakeItSoCLI -from optparse import OptionParser -from template import MakeItSoTemplate - -class GlobalNeighborsTemplate(MakeItSoTemplate): - """ - GlobalNeighbors template - """ - name = 'GlobalNeighbors' - templates = ['template'] - look = True - -class TemplateCLI(MakeItSoCLI): - """ - CLI driver for the GlobalNeighbors template - """ - -def main(args=sys.argv[:]): - cli = TemplateCLI() - cli(*args) - -if __name__ == '__main__': - main() - -