diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-03-01 22:22:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-01 22:22:14 +0100 |
commit | 96d2805b5bf372cb79c2b7db5c1e499c41e477c1 (patch) | |
tree | 2b820e07cb7b08d1be4a8770f169504354e669eb | |
parent | 5f23ed916aedbd266b9aaa5857461d80c9175031 (diff) | |
parent | 9efbe1297d8d32419b8f04c3758ca7c83a95f199 (diff) | |
download | gitlab-96d2805b5bf372cb79c2b7db5c1e499c41e477c1.tar.gz |
Merge pull request #1351 from JohnVillalovos/jlvillal/import_start
chore: del 'import *' in gitlab/v4/objects/project_access_tokens.py
-rw-r--r-- | gitlab/v4/objects/project_access_tokens.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitlab/v4/objects/project_access_tokens.py b/gitlab/v4/objects/project_access_tokens.py index ab348cf..15ef33a 100644 --- a/gitlab/v4/objects/project_access_tokens.py +++ b/gitlab/v4/objects/project_access_tokens.py @@ -1,5 +1,5 @@ -from gitlab.base import * # noqa -from gitlab.mixins import * # noqa +from gitlab.base import RESTManager, RESTObject +from gitlab.mixins import CreateMixin, DeleteMixin, ListMixin, ObjectDeleteMixin __all__ = [ |