Skip to content

Commit

Permalink
argparse message fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoongi Kim committed Feb 19, 2019
1 parent 907f483 commit 6d0b3be
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 @@ -57,7 +57,7 @@ def __init__(self, skip_already_exist=True, n_threads=4, do_google=True, do_nave
:param do_google: Download from google.com (boolean)
:param do_naver: Download from naver.com (boolean)
:param download_path: Download folder path
:param full_resolution: Download full resolution image rather than thumbnails (slow)
:param full_resolution: Download full resolution image instead of thumbnails (slow)
:param face: Face search mode
"""

Expand Down Expand Up @@ -274,7 +274,7 @@ def imbalance_check(self):
parser.add_argument('--threads', type=int, default=4, help='Number of threads to download.')
parser.add_argument('--google', type=str, default='true', help='Download from google.com (boolean)')
parser.add_argument('--naver', type=str, default='true', help='Download from naver.com (boolean)')
parser.add_argument('--full', type=str, default='false', help='Download full resolution image rather than thumbnails (slow)')
parser.add_argument('--full', type=str, default='false', help='Download full resolution image instead of thumbnails (slow)')
parser.add_argument('--face', type=str, default='false', help='Face search mode')
args = parser.parse_args()

Expand Down

0 comments on commit 6d0b3be

Please sign in to comment.