summaryrefslogtreecommitdiff
path: root/src/apscheduler/schedulers/sync.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/apscheduler/schedulers/sync.py')
-rw-r--r--src/apscheduler/schedulers/sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/apscheduler/schedulers/sync.py b/src/apscheduler/schedulers/sync.py
index c3e9207..162e6b9 100644
--- a/src/apscheduler/schedulers/sync.py
+++ b/src/apscheduler/schedulers/sync.py
@@ -22,6 +22,7 @@ from .._exceptions import (
JobLookupError,
ScheduleLookupError,
)
+from .._structures import Job, JobResult, Schedule, Task
from ..abc import DataStore, EventBroker, Trigger
from ..context import current_scheduler
from ..datastores.memory import MemoryDataStore
@@ -35,7 +36,6 @@ from ..events import (
ScheduleUpdated,
)
from ..marshalling import callable_to_ref
-from ..structures import Job, JobResult, Schedule, Task
from ..workers.sync import Worker
_microsecond_delta = timedelta(microseconds=1)