We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba063e0 commit 589b2f2Copy full SHA for 589b2f2
1 file changed
github2/issues.py
@@ -15,6 +15,9 @@ class Issue(BaseData):
15
created_at = DateAttribute("The date this issue was created.")
16
closed_at = DateAttribute("The date this issue was closed.")
17
updated_at = DateAttribute("The date when this issue was last updated.")
18
+ diff_url = Attribute("URL for diff output associated with this issue.")
19
+ patch_url = Attribute("URL for format-patch associated with this issue.")
20
+ pull_request_url = Attribute("URL for the issue's related pull request.")
21
22
def __repr__(self):
23
return "<Issue: %s>" % self.title.encode('utf-8')
0 commit comments