summaryrefslogtreecommitdiff
path: root/plac/doc/annotations.py
diff options
context:
space:
mode:
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