maxxungao
Results
1
comments of
maxxungao
I ran into this too. A more general way to reproduce this is: ``` from clize import run def f1(a, *others): pass def f2(b, *others): f1(b, *others) run(f2) ``` Basically,...