diff options
Diffstat (limited to 'gitlab/v4/objects/milestones.py')
-rw-r--r-- | gitlab/v4/objects/milestones.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gitlab/v4/objects/milestones.py b/gitlab/v4/objects/milestones.py index fc39df7..53ad66d 100644 --- a/gitlab/v4/objects/milestones.py +++ b/gitlab/v4/objects/milestones.py @@ -1,3 +1,5 @@ +from typing import Any + from gitlab import cli from gitlab import exceptions as exc from gitlab import types @@ -123,7 +125,7 @@ class ProjectMilestone(PromoteMixin, SaveMixin, ObjectDeleteMixin, RESTObject): @cli.register_custom_action("ProjectMilestone") @exc.on_http_error(exc.GitlabListError) - def merge_requests(self, **kwargs): + def merge_requests(self, **kwargs: Any) -> RESTObjectList: """List the merge requests related to this milestone. Args: |