Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed Oct 31, 2024
1 parent c858137 commit b4207f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 3 additions & 3 deletions netmiko/cli_tools/argument_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def show_args(parser):
help="Device or group to connect to",
action="store",
type=str,
nargs="?"
nargs="?",
)


Expand All @@ -50,7 +50,7 @@ def cfg_args(parser):
help="Device or group to connect to",
action="store",
type=str,
nargs="?"
nargs="?",
)
parser.add_argument(
"--infile", help="Read commands from file", type=argparse.FileType("r")
Expand All @@ -67,7 +67,7 @@ def grep_args(parser):
help="Device or group to connect to",
action="store",
type=str,
nargs="?"
nargs="?",
)


Expand Down
2 changes: 0 additions & 2 deletions netmiko/cli_tools/fix.txt

This file was deleted.

0 comments on commit b4207f0

Please sign in to comment.