From 5d0fa56bf3c3854bffdb18bb56607a8f03d33050 Mon Sep 17 00:00:00 2001 From: Matthieu Pignolet Date: Sun, 25 May 2025 11:52:09 +0400 Subject: [PATCH] fix: remove the `type` argument when using `add_argument` --- sara.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sara.py b/sara.py index 09e9ab2..3bbb850 100644 --- a/sara.py +++ b/sara.py @@ -743,7 +743,7 @@ def main(): parser.add_argument("--ip", help="The address of your MikroTik router") parser.add_argument("--username", help="SSH username (RO account can be used)") parser.add_argument("--password", help="SSH password") - parser.add_argument("--skip-confirmation", action='store_true', type=bool, help='Skips the confirmation prompt (disclamer: ensure that your are allowed to use this tool)') + parser.add_argument("--skip-confirmation", action='store_true', help='Skips the confirmation prompt (disclamer: ensure that your are allowed to use this tool)') parser.add_argument("--port", type=int, default=22, help="SSH port (default: 22)") args = parser.parse_args()