File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- # Python Fire [ ![ PyPI] ( https://img.shields.io/pypi/pyversions/Django .svg?style=plastic )] ( https://github.com/google/python-fire )
1+ # Python Fire [ ![ PyPI] ( https://img.shields.io/pypi/pyversions/fire .svg?style=plastic )] ( https://github.com/google/python-fire )
22_ Python Fire is a library for automatically generating command line interfaces
33(CLIs) from absolutely any Python object._
44
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def main(argv):
3030access a member of current component, call the current component (if it's a
3131function), or instantiate the current component (if it's a class). The target
3232component begins as Component, and at each operation the component becomes the
33- result of the preceeding operation.
33+ result of the preceding operation.
3434
3535For example "command fn arg1 arg2" might access the "fn" property of the initial
3636target component, and then call that function with arguments 'arg1' and 'arg2'.
@@ -565,8 +565,8 @@ def _MakeParseFn(fn):
565565
566566 def _ParseFn (args ):
567567 """Parses the list of `args` into (varargs, kwargs), remaining_args."""
568- kwargs , remaining_kwargs , remaining_args = \
569- _ParseKeywordArgs ( args , all_args , fn_spec .varkw )
568+ kwargs , remaining_kwargs , remaining_args = _ParseKeywordArgs (
569+ args , all_args , fn_spec .varkw )
570570
571571 # Note: _ParseArgs modifies kwargs.
572572 parsed_args , kwargs , remaining_args , capacity = _ParseArgs (
You can’t perform that action at this time.
0 commit comments