Skip to content

Commit

Permalink
Removed duplicate argument from add_job() docstring (#845)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterschutt authored Jan 11, 2024
1 parent 5bb4d81 commit b9fb882
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/apscheduler/_schedulers/async_.py
Original file line number Diff line number Diff line change
Expand Up @@ -524,10 +524,9 @@ async def add_job(
Either the ID of a pre-existing task, or a function/method. If a function is
given, a task will be created with the fully qualified name of the function
as the task ID (unless that task already exists of course).
:param job_executor: name of the job executor to run the job with
:param args: positional arguments to call the target callable with
:param kwargs: keyword arguments to call the target callable with
:param job_executor: name of the job executor to run the task with
:param job_executor: name of the job executor to run the job with
:param result_expiration_time: the minimum time (as seconds, or timedelta) to
keep the result of the job available for fetching (the result won't be
saved at all if that time is 0)
Expand Down

0 comments on commit b9fb882

Please sign in to comment.