Fix erroneous mypy warning
This commit is contained in:
parent
9321539ee7
commit
828f8a9231
1 changed files with 1 additions and 1 deletions
|
|
@ -147,7 +147,7 @@ def parallel_map(
|
||||||
serialized_map_function = dill.dumps(func, byref=True, recurse=False)
|
serialized_map_function = dill.dumps(func, byref=True, recurse=False)
|
||||||
|
|
||||||
processes = [
|
processes = [
|
||||||
ctx.Process(
|
ctx.Process( # type: ignore
|
||||||
name=f"parallel_map_{config.function_name}_{i}",
|
name=f"parallel_map_{config.function_name}_{i}",
|
||||||
target=mapper_function,
|
target=mapper_function,
|
||||||
daemon=True,
|
daemon=True,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue