mirror of
https://github.com/casterbyte/Sara.git
synced 2025-07-22 19:54:39 +02:00
fix: remove the type
argument when using add_argument
This commit is contained in:
parent
e499becd2b
commit
5d0fa56bf3
1 changed files with 1 additions and 1 deletions
2
sara.py
2
sara.py
|
@ -743,7 +743,7 @@ def main():
|
||||||
parser.add_argument("--ip", help="The address of your MikroTik router")
|
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("--username", help="SSH username (RO account can be used)")
|
||||||
parser.add_argument("--password", help="SSH password")
|
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)")
|
parser.add_argument("--port", type=int, default=22, help="SSH port (default: 22)")
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue