1
0
Fork 0

Let threads default to 1 instead of None.

master
voussoir 2022-03-27 15:36:34 -07:00
parent 3da13fd0d6
commit 769240dbb8
No known key found for this signature in database
GPG Key ID: 5F7554F8C26DACCB
1 changed files with 4 additions and 4 deletions

View File

@ -117,7 +117,7 @@ def get_item(id):
return item return item
def get_items(ids, threads=None): def get_items(ids, threads=None):
if threads: if threads and threads > 1:
return get_items_multithreaded(ids, threads) return get_items_multithreaded(ids, threads)
else: else:
return get_items_singlethreaded(ids) return get_items_singlethreaded(ids)
@ -587,7 +587,7 @@ def main(argv):
p_get.add_argument( p_get.add_argument(
'--threads', '--threads',
type=int, type=int,
default=None, default=1,
help=''' help='''
Use this many threads to download items. Use this many threads to download items.
''', ''',
@ -662,7 +662,7 @@ def main(argv):
p_update.add_argument( p_update.add_argument(
'--threads', '--threads',
type=int, type=int,
default=None, default=1,
help=''' help='''
Use this many threads to download items. Use this many threads to download items.
''', ''',
@ -704,7 +704,7 @@ def main(argv):
p_update_items.add_argument( p_update_items.add_argument(
'--threads', '--threads',
type=int, type=int,
default=None, default=1,
help=''' help='''
Use this many threads to download items. Use this many threads to download items.
''', ''',