From 2df8ec794792eedf59a9054d29986d1cdd230a42 Mon Sep 17 00:00:00 2001 From: Panagiotis Simakis Date: Wed, 6 Sep 2023 06:46:17 +0000 Subject: [PATCH] Add missing parameter description --- fire/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fire/core.py b/fire/core.py index c1e97367..6367262d 100644 --- a/fire/core.py +++ b/fire/core.py @@ -94,6 +94,8 @@ def Fire(component=None, command=None, name=None, serialize=None): a string or a list of strings; a list of strings is preferred. name: Optional. The name of the command as entered at the command line. Used in interactive mode and for generating the completion script. + serialize: Optional. If supplied, all objects are serialized to text via + the provided callable. Returns: The result of executing the Fire command. Execution begins with the initial target component. The component is updated by using the command arguments