diff options
Diffstat (limited to 'gitlab/v4/objects/jobs.py')
-rw-r--r-- | gitlab/v4/objects/jobs.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gitlab/v4/objects/jobs.py b/gitlab/v4/objects/jobs.py index be06f86..8424838 100644 --- a/gitlab/v4/objects/jobs.py +++ b/gitlab/v4/objects/jobs.py @@ -2,11 +2,11 @@ from typing import Any, Callable, cast, Dict, Optional, TYPE_CHECKING, Union import requests -from gitlab import cli -from gitlab import exceptions as exc -from gitlab import utils -from gitlab.base import RESTManager, RESTObject -from gitlab.mixins import RefreshMixin, RetrieveMixin +from ... import cli +from ... import exceptions as exc +from ... import utils +from ...base import RESTManager, RESTObject +from ...mixins import RefreshMixin, RetrieveMixin __all__ = [ "ProjectJob", |