Skip to content

Commit

Permalink
Add missing parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-janidlo authored and khk-globus committed May 4, 2022
1 parent 5a77188 commit 7d5b3e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/executor.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ More complex cases
# Here's how you'd launch several functions:
futures = []
for i in range(10):
futures.append(fx.submit(double, i, endpoint_id=endpoint_id)
futures.append(fx.submit(double, i, endpoint_id=endpoint_id))
# Now wait and print each result:
for f in futures:
Expand Down

0 comments on commit 7d5b3e6

Please sign in to comment.