8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c7b039 commit e76a10cCopy full SHA for e76a10c
docs/index.md
@@ -1,4 +1,4 @@
1
-# Python Fire
+# Python Fire [](https://github.com/google/python-fire)
2
_Python Fire is a library for automatically generating command line interfaces
3
(CLIs) from absolutely any Python object._
4
fire/core.py
@@ -262,7 +262,7 @@ def _OneLineResult(result):
262
return str(result).replace('\n', ' ')
263
264
try:
265
- # non-forced to ascii convert
+ # Don't force conversion to ascii.
266
return json.dumps(result, ensure_ascii=False)
267
except (TypeError, ValueError):
268
0 commit comments