summaryrefslogtreecommitdiff
path: root/src/apscheduler/triggers/calendarinterval.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/apscheduler/triggers/calendarinterval.py')
-rw-r--r--src/apscheduler/triggers/calendarinterval.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/apscheduler/triggers/calendarinterval.py b/src/apscheduler/triggers/calendarinterval.py
index 0aedd15..61fde4b 100644
--- a/src/apscheduler/triggers/calendarinterval.py
+++ b/src/apscheduler/triggers/calendarinterval.py
@@ -5,6 +5,8 @@ from typing import Any
import attrs
+from .._utils import timezone_repr
+from .._validators import as_date, as_timezone, require_state_version
from ..abc import Trigger
from ..marshalling import (
marshal_date,
@@ -12,8 +14,6 @@ from ..marshalling import (
unmarshal_date,
unmarshal_timezone,
)
-from ..util import timezone_repr
-from ..validators import as_date, as_timezone, require_state_version
@attrs.define(kw_only=True)