Skip to content

Commit 0cd6cbe

Browse files
committed
Fix Set argparse usage
1 parent d14b909 commit 0cd6cbe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cisco_gnmi/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,10 @@ def gnmi_set():
211211
description="Performs Set RPC against network element."
212212
)
213213
parser.add_argument(
214-
"-update_json_config", description="JSON-modeled config to apply as an update."
214+
"-update_json_config", help="JSON-modeled config to apply as an update."
215215
)
216216
parser.add_argument(
217-
"-replace_json_config", description="JSON-modeled config to apply as an update."
217+
"-replace_json_config", help="JSON-modeled config to apply as an update."
218218
)
219219
parser.add_argument(
220220
"-delete_xpath", help="XPaths to delete.", type=str, action="append"

0 commit comments

Comments
 (0)