diff options
Diffstat (limited to 'gitlab/v4/objects/epics.py')
-rw-r--r-- | gitlab/v4/objects/epics.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gitlab/v4/objects/epics.py b/gitlab/v4/objects/epics.py index 999c45f..3b1e900 100644 --- a/gitlab/v4/objects/epics.py +++ b/gitlab/v4/objects/epics.py @@ -1,9 +1,9 @@ from typing import Any, cast, Dict, Optional, TYPE_CHECKING, Union -from gitlab import exceptions as exc -from gitlab import types -from gitlab.base import RequiredOptional, RESTManager, RESTObject -from gitlab.mixins import ( +from ... import exceptions as exc +from ... import types +from ...base import RequiredOptional, RESTManager, RESTObject +from ...mixins import ( CreateMixin, CRUDMixin, DeleteMixin, @@ -12,7 +12,6 @@ from gitlab.mixins import ( SaveMixin, UpdateMixin, ) - from .events import GroupEpicResourceLabelEventManager # noqa: F401 __all__ = [ |