mirror of
https://github.com/kennethreitz-archive/plac.git
synced 2026-06-05 23:50:18 +00:00
10 lines
287 B
Python
10 lines
287 B
Python
# 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
|