Fix missing "," in the documentation of Executor Objects (GH-30404)

This commit is contained in:
Philipp Claßen 2022-01-04 19:48:04 +01:00 committed by GitHub
parent 7537f60087
commit f404e26d74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ Executor Objects
.. method:: submit(fn, /, *args, **kwargs)
Schedules the callable, *fn*, to be executed as ``fn(*args **kwargs)``
Schedules the callable, *fn*, to be executed as ``fn(*args, **kwargs)``
and returns a :class:`Future` object representing the execution of the
callable. ::