Fix typo.
This commit is contained in:
parent
e5a6599ccb
commit
8d2d538660
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ def mp_pool_run(func, args=None, kwds=None, jobs=multiprocessing.cpu_count()):
|
||||||
Return list of results.
|
Return list of results.
|
||||||
"""
|
"""
|
||||||
if args and kwds:
|
if args and kwds:
|
||||||
fargs = zip(args, kdws)
|
fargs = zip(args, kwds)
|
||||||
elif args:
|
elif args:
|
||||||
fargs = zip(args, itertools.repeat({}))
|
fargs = zip(args, itertools.repeat({}))
|
||||||
elif kwds:
|
elif kwds:
|
||||||
|
|
Loading…
Reference in a new issue