diff options
author | John L. Villalovos <john@sodarock.com> | 2021-03-01 11:31:14 -0800 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2021-03-01 11:31:14 -0800 |
commit | 9efbe1297d8d32419b8f04c3758ca7c83a95f199 (patch) | |
tree | 2b820e07cb7b08d1be4a8770f169504354e669eb | |
parent | 5f23ed916aedbd266b9aaa5857461d80c9175031 (diff) | |
download | gitlab-9efbe1297d8d32419b8f04c3758ca7c83a95f199.tar.gz |
chore: del 'import *' in gitlab/v4/objects/project_access_tokens.py
Remove usage of '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__ = [ |