summaryrefslogtreecommitdiff
path: root/plac/doc/annotations.py
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2011-06-13 09:57:28 +0200
committerMichele Simionato <michele.simionato@gmail.com>2011-06-13 09:57:28 +0200
commit68e5691ddde6246cd22c7cc6e0b189f2b343e661 (patch)
treeafd0a525154b6540d048e039acea9db6da870e9a /plac/doc/annotations.py
parent2c9a92feab665152a02a7482bff9d31bafa2996e (diff)
downloadmicheles-68e5691ddde6246cd22c7cc6e0b189f2b343e661.tar.gz
Removed the plac project, which now has its own page
Diffstat (limited to 'plac/doc/annotations.py')
-rw-r--r--plac/doc/annotations.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/plac/doc/annotations.py b/plac/doc/annotations.py
deleted file mode 100644
index 0de2140..0000000
--- a/plac/doc/annotations.py
+++ /dev/null
@@ -1,9 +0,0 @@
-# annotations.py
-class Positional(object):
- def __init__(self, help='', type=None, choices=None, metavar=None):
- self.help = help
- self.kind = 'positional'
- self.abbrev = None
- self.type = type
- self.choices = choices
- self.metavar = metavar