google / google/python-fire

--help doesn't work on functions with **kwargs and all default args

未关闭
#258 1 条评论 2 个 reaction 已指派 0 人 在 GitHub 查看
主要语言
Python
星标
28.2k
派生
1.5k
PR 合并指标
30 天内没有已合并 PR

描述

Consider the following example:

```
import fire

def test(a=1, b=1):
"""
Returns the sum of a and b.

:param a: The first parameter
:param b: The second parameter
"""
return a + b

fire.Fire(test)
```

If the file is called using `python ./myFile.py --help`, the help signature is printed as expected

However, if `**kwargs` is added to the signature of `test`, the return value of the function is printed instead. Is this expected behavior? It works if I run `python ./myFile.py -- --help`, but for someone using my application and not familiar with the 'fire' CLI, this is non-intuitive.

How do I need to modify `test` so that if someone calls `--help` on it, the help signature is printed?

Thanks!

贡献指南

打开贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。