diff options
Diffstat (limited to 'gitlab/v4/objects/ldap.py')
-rw-r--r-- | gitlab/v4/objects/ldap.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gitlab/v4/objects/ldap.py b/gitlab/v4/objects/ldap.py index ed3dd72..5355aaf 100644 --- a/gitlab/v4/objects/ldap.py +++ b/gitlab/v4/objects/ldap.py @@ -1,7 +1,14 @@ +from gitlab import exceptions as exc from gitlab.base import * # noqa from gitlab.mixins import * # noqa +__all__ = [ + "LDAPGroup", + "LDAPGroupManager", +] + + class LDAPGroup(RESTObject): _id_attr = None |