diff options
Diffstat (limited to 'apscheduler/executors/asyncio.py')
-rw-r--r-- | apscheduler/executors/asyncio.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apscheduler/executors/asyncio.py b/apscheduler/executors/asyncio.py index 198cdb5..2618f61 100644 --- a/apscheduler/executors/asyncio.py +++ b/apscheduler/executors/asyncio.py @@ -5,7 +5,11 @@ from apscheduler.executors.base import BaseExecutor, run_job class AsyncIOExecutor(BaseExecutor): - """Runs jobs in the default executor of the event loop.""" + """ + Runs jobs in the default executor of the event loop. + + Plugin alias: ``asyncio`` + """ def start(self, scheduler, alias): super(AsyncIOExecutor, self).start(scheduler, alias) |