Fix typo.

This commit is contained in:
Darko Poljak 2016-12-11 21:17:22 +01:00 committed by GitHub
parent e5a6599ccb
commit 8d2d538660
1 changed files with 1 additions and 1 deletions

View File

@ -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: