diff options
Diffstat (limited to 'gitlab/v4/objects/deploy_keys.py')
-rw-r--r-- | gitlab/v4/objects/deploy_keys.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gitlab/v4/objects/deploy_keys.py b/gitlab/v4/objects/deploy_keys.py index 9143fc2..da2fddd 100644 --- a/gitlab/v4/objects/deploy_keys.py +++ b/gitlab/v4/objects/deploy_keys.py @@ -4,6 +4,14 @@ from gitlab.base import * # noqa from gitlab.mixins import * # noqa +__all__ = [ + "DeployKey", + "DeployKeyManager", + "ProjectKey", + "ProjectKeyManager", +] + + class DeployKey(RESTObject): pass |