8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e088425 + 17b8705 commit ad7d330Copy full SHA for ad7d330
github3/github.py
@@ -180,10 +180,13 @@ def create_issue(self,
180
formatted
181
:param str assignee: (optional), Login of person to assign
182
the issue to
183
- :param str milestone: (optional), Which milestone to assign
184
- the issue to
+ :param int milestone: (optional), id number of the milestone to
+ attribute this issue to (e.g. ``m`` is a :class:`Milestone
185
+ <github3.issues.Milestone>` object, ``m.number`` is what you pass
186
+ here.)
187
:param list labels: (optional), List of label names.
- :returns: :class:`Issue <github3.issues.Issue>`
188
+ :returns: :class:`Issue <github3.issues.Issue>` if successful, else
189
+ None
190
"""
191
repo = None
192
if owner and repository and title:
0 commit comments