help page shows unwanted information about groups
- Ngôn ngữ chính
- Python
- Star
- 28.2k
- Fork
- 1.5k
- Chỉ số merge pull request
- Không có pull request nào được merge trong 30 ngày
Mô tả
I have a file called `neptune` that just has some standalone functions, no classes or groups.
I create my cli by doing
```
if __name__ == '__main__':
fire.Fire()
```
When I do `neptune --help`, I see

I don't understand why it says
f - "Character and line based layer over a BufferedIOBase object, buffer"
I don't want to see that information about the `f` group when I do `neptune --help`
A workaround I came up with was to do this instead
```
if __name__ == '__main__':
fire.Fire({
'cmd1': cmd1,
'cmd2': cmd2,
...
})
```
This doesn't seem intuitive.
I'd be happy to help fix this if someone wants to point me in the right direction!
Hướng dẫn đóng góp
Đánh giá
Issue này chưa được đánh giá.