(l, sep=',')
| 38 | return maybe_list(itemgetter(0, 2)(arg.partition(':'))) |
| 39 | |
| 40 | def maybe_list(l, sep=','): |
| 41 | return l[0], l[1].split(sep) if sep in l[1] else l[1] |
| 42 | |
| 43 | args = dict(simplearg(arg) for arg in ctx.args) |
| 44 | generic = 'generic' in args |
no outgoing calls