From f05c287512a9253c7f7d308d3437240ac8257452 Mon Sep 17 00:00:00 2001 From: Nejc Habjan Date: Sun, 7 Feb 2021 17:00:50 +0100 Subject: refactor(api): explicitly export classes for star imports --- gitlab/v4/objects/branches.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gitlab/v4/objects/branches.py') 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" -- cgit v1.2.1