equal
deleted
inserted
replaced
203 |
203 |
204 parsedargs.extend(args[pos:]) |
204 parsedargs.extend(args[pos:]) |
205 return parsedopts, parsedargs |
205 return parsedopts, parsedargs |
206 |
206 |
207 |
207 |
208 class customopt(object): |
208 class customopt(object): # pytype: disable=ignored-metaclass |
209 """Manage defaults and mutations for any type of opt.""" |
209 """Manage defaults and mutations for any type of opt.""" |
210 |
210 |
211 __metaclass__ = abc.ABCMeta |
211 __metaclass__ = abc.ABCMeta |
212 |
212 |
213 def __init__(self, defaultvalue): |
213 def __init__(self, defaultvalue): |