Skip to content

Commit

Permalink
code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
abbbi committed Jan 25, 2024
1 parent baaff51 commit 2e6d640
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions qmpbackup
Original file line number Diff line number Diff line change
Expand Up @@ -74,20 +74,20 @@ async def main():
"--agent-socket",
dest="agentsocket",
help="socket to use for communication with qemu agent",
required=0,
required=False,
)
parser.add_argument(
"--debug",
dest="debug",
help="more verbose output",
action="store_true",
required=0,
required=False,
)
parser.add_argument(
"--logfile",
dest="logfile",
help="log output to specified logfile",
required=0,
required=False,
)
subparsers = parser.add_subparsers(help="sub-command help")
parser_backup = subparsers.add_parser("backup", help="backup")
Expand Down

0 comments on commit 2e6d640

Please sign in to comment.