diff options
Diffstat (limited to 'gitlab/v4/objects/branches.py')
-rw-r--r-- | gitlab/v4/objects/branches.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gitlab/v4/objects/branches.py b/gitlab/v4/objects/branches.py index c6ff1e8..f14fd79 100644 --- a/gitlab/v4/objects/branches.py +++ b/gitlab/v4/objects/branches.py @@ -4,6 +4,14 @@ from gitlab.base import * # noqa from gitlab.mixins import * # noqa +__all__ = [ + "ProjectBranch", + "ProjectBranchManager", + "ProjectProtectedBranch", + "ProjectProtectedBranchManager", +] + + class ProjectBranch(ObjectDeleteMixin, RESTObject): _id_attr = "name" |