Skip to content

Commit

Permalink
Fix help message default values
Browse files Browse the repository at this point in the history
  • Loading branch information
dxghost committed Jan 31, 2021
1 parent 14bfde4 commit e19d602
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ def main(image_path, columns, rows, verbose):
parser.add_argument("-i", metavar='i', type=str,
help="image path", required=True)
parser.add_argument(
'-c', metavar='i', type=int, help="-c <int> columns to remove, default: 1", default=0)
'-c', metavar='i', type=int, help="-c <int> columns to remove, default: 0", default=0)
parser.add_argument(
'-r', metavar='i', type=int, help="-r <int> rows to remove, default: 1", default=0)
'-r', metavar='i', type=int, help="-r <int> rows to remove, default: 0", default=0)
parser.add_argument('-v', metavar='v', type=bool,
help="-v store each step seam into output directory, default: False",
default=False, action=argparse.BooleanOptionalAction)
Expand Down

0 comments on commit e19d602

Please sign in to comment.