Skip to content

Commit

Permalink
Added missing docstring to JobExecutor.run_job()
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed Aug 2, 2024
1 parent 20b60c7 commit edc3fd8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/apscheduler/abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,9 +396,10 @@ async def start(self, exit_stack: AsyncExitStack) -> None:
@abstractmethod
async def run_job(self, func: Callable[..., Any], job: Job) -> Any:
"""
Run the given job by calling the given function.
:param func:
:param job:
:param func: the function to call
:param job: the associated job
:return: the return value of ``func`` (potentially awaiting on the returned
aawaitable, if any)
"""

0 comments on commit edc3fd8

Please sign in to comment.