docs: Use get_all keyword arg instead of all in docstrings · python-gitlab/python-gitlab@f62dda7

@@ -39,7 +39,7 @@ def issues(self, **kwargs: Any) -> RESTObjectList[GroupIssue]:

3939

"""List issues related to this milestone.

40404141

Args:

42-

all: If True, return all the items, without pagination

42+

get_all: If True, return all the items, without pagination

4343

per_page: Number of items to retrieve per request

4444

page: ID of the page to return (starts with page 1)

4545

**kwargs: Extra options to send to the server (e.g. sudo)

@@ -66,7 +66,7 @@ def merge_requests(self, **kwargs: Any) -> RESTObjectList[GroupMergeRequest]:

6666

"""List the merge requests related to this milestone.

67676868

Args:

69-

all: If True, return all the items, without pagination

69+

get_all: If True, return all the items, without pagination

7070

per_page: Number of items to retrieve per request

7171

page: ID of the page to return (starts with page 1)

7272

**kwargs: Extra options to send to the server (e.g. sudo)

@@ -113,7 +113,7 @@ def issues(self, **kwargs: Any) -> RESTObjectList[ProjectIssue]:

113113

"""List issues related to this milestone.

114114115115

Args:

116-

all: If True, return all the items, without pagination

116+

get_all: If True, return all the items, without pagination

117117

per_page: Number of items to retrieve per request

118118

page: ID of the page to return (starts with page 1)

119119

**kwargs: Extra options to send to the server (e.g. sudo)

@@ -140,7 +140,7 @@ def merge_requests(self, **kwargs: Any) -> RESTObjectList[ProjectMergeRequest]:

140140

"""List the merge requests related to this milestone.

141141142142

Args:

143-

all: If True, return all the items, without pagination

143+

get_all: If True, return all the items, without pagination

144144

per_page: Number of items to retrieve per request

145145

page: ID of the page to return (starts with page 1)

146146

**kwargs: Extra options to send to the server (e.g. sudo)