diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-02-25 19:16:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-25 19:16:53 +0100 |
commit | 0b67ca29d2cc6177e330b91519fdf54b05621769 (patch) | |
tree | 1af1374b5219e3b9a3c0c1eba590097a4a2c6312 /gitlab/v4/objects/projects.py | |
parent | e06c51bcf29492dbc7ef838c35f6ef86a79af261 (diff) | |
parent | c83eaf4f395300471311a67be34d8d306c2b3861 (diff) | |
download | gitlab-0b67ca29d2cc6177e330b91519fdf54b05621769.tar.gz |
Merge pull request #1319 from JohnVillalovos/jlvillal/import_star
chore: remove usage of 'from ... import *'
Diffstat (limited to 'gitlab/v4/objects/projects.py')
-rw-r--r-- | gitlab/v4/objects/projects.py | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/gitlab/v4/objects/projects.py b/gitlab/v4/objects/projects.py index 30df5ed..becc064 100644 --- a/gitlab/v4/objects/projects.py +++ b/gitlab/v4/objects/projects.py @@ -1,7 +1,15 @@ from gitlab import cli, types, utils from gitlab import exceptions as exc -from gitlab.base import * # noqa -from gitlab.mixins import * # noqa +from gitlab.base import RESTManager, RESTObject +from gitlab.mixins import ( + CRUDMixin, + CreateMixin, + ListMixin, + ObjectDeleteMixin, + RefreshMixin, + SaveMixin, + UpdateMixin, +) from .project_access_tokens import ProjectAccessTokenManager from .access_requests import ProjectAccessRequestManager |