Skip to content

Commit

Permalink
Fixed the docstring for the Datastore class
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed Nov 12, 2023
1 parent bbb9dfe commit d6c5fc0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/apscheduler/abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,12 @@ def subscribe(


class DataStore(metaclass=ABCMeta):
"""Asynchronous version of :class:`DataStore`. Expected to work on asyncio."""
"""
Interface for data stores.
Data stores keep track of tasks, schedules and jobs. When these objects change, the
data store publishes events to the associated event broker accordingly.
"""

@abstractmethod
async def start(
Expand Down

0 comments on commit d6c5fc0

Please sign in to comment.