I have a function like this -
def f(arg)
print(arg)
trying to pass an argument with Python Fire like this -
f hello there
output -
hello
I have a function like this -
def f(arg)
print(arg)
trying to pass an argument with Python Fire like this -
f hello there
output -
hello
It worked after enclosing the input within escaped quotes -
f \"hello there\"
output -
hello there