diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-02-07 17:00:50 +0100 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2021-02-07 17:17:50 +0100 |
commit | f05c287512a9253c7f7d308d3437240ac8257452 (patch) | |
tree | 394c9638075037d2d1d2b08aa5a5be3b41f75b0e /gitlab/v4/objects/projects.py | |
parent | a5a48ad08577be70c6ca511d3b4803624e5c2043 (diff) | |
download | gitlab-refactor/split-objects.tar.gz |
refactor(api): explicitly export classes for star importsrefactor/split-objects
Diffstat (limited to 'gitlab/v4/objects/projects.py')
-rw-r--r-- | gitlab/v4/objects/projects.py | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/gitlab/v4/objects/projects.py b/gitlab/v4/objects/projects.py index 0ad9db1..0284e98 100644 --- a/gitlab/v4/objects/projects.py +++ b/gitlab/v4/objects/projects.py @@ -1,6 +1,5 @@ -from gitlab import cli +from gitlab import cli, types, utils from gitlab import exceptions as exc -from gitlab import types, utils from gitlab.base import * # noqa from gitlab.mixins import * # noqa @@ -47,6 +46,18 @@ from .variables import ProjectVariableManager from .wikis import ProjectWikiManager +__all__ = [ + "GroupProject", + "GroupProjectManager", + "Project", + "ProjectManager", + "ProjectFork", + "ProjectForkManager", + "ProjectRemoteMirror", + "ProjectRemoteMirrorManager", +] + + class GroupProject(RESTObject): pass |