diff options
Diffstat (limited to 'gitlab/v4/objects/commits.py')
-rw-r--r-- | gitlab/v4/objects/commits.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gitlab/v4/objects/commits.py b/gitlab/v4/objects/commits.py index 3f2232b..712a49f 100644 --- a/gitlab/v4/objects/commits.py +++ b/gitlab/v4/objects/commits.py @@ -5,6 +5,16 @@ from gitlab.mixins import * # noqa from .discussions import ProjectCommitDiscussionManager +__all__ = [ + "ProjectCommit", + "ProjectCommitManager", + "ProjectCommitComment", + "ProjectCommitCommentManager", + "ProjectCommitStatus", + "ProjectCommitStatusManager", +] + + class ProjectCommit(RESTObject): _short_print_attr = "title" _managers = ( |