From 559400ed90bf58a3f3d70d7c997c37e3d8e88c08 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 13 Mar 2024 13:01:02 -0400 Subject: [PATCH] Explicitly set --lines to integer type --- client-cli/pvc/cli/cli.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client-cli/pvc/cli/cli.py b/client-cli/pvc/cli/cli.py index e3e0ab85..a117955b 100644 --- a/client-cli/pvc/cli/cli.py +++ b/client-cli/pvc/cli/cli.py @@ -892,6 +892,7 @@ def cli_node_ready( "--lines", "lines", default=None, + type=int, show_default=False, help="Display this many log lines from the end of the log buffer. [default: 1000; with follow: 10]", ) @@ -2516,6 +2517,7 @@ def cli_vm_volume_remove(domain, volume, live_flag, restart_flag): "--lines", "lines", default=None, + type=int, show_default=False, help="Display this many log lines from the end of the log buffer. [default: 1000; with follow: 10]", )