Closed jjkim0807 closed 11 months ago
I think some of the files are outdated. I am wondering, how do the arguments injected with fire?
I think some of the files are outdated. I am wondering, how do the arguments injected with fire?
I updated outdated files!
like this! https://google.github.io/python-fire/guide/
import fire
def add(x, y): return x + y
def multiply(x, y): return x * y
if name == 'main': fire.Fire()
$ python example.py add 10 20 30 $ python example.py multiply 10 20 200
Fixes #21