8000 Fix up github3.repos.status docstrings · pythonthings/github3.py@8f9b5d4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8f9b5d4

Browse files
committed
Fix up github3.repos.status docstrings
1 parent 00eea06 commit 8f9b5d4

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

github3/repos/status.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@
1313

1414

1515
class Status(GitHubCore):
16-
"""The :class:`Status <Status>` object. This represents information from
17-
the Repo Status API.
16+
"""The :class:`Status <Status>` object.
17+
18+
This represents information from the Repo Status API.
1819
1920
See also: http://developer.github.com/v3/repos/statuses/
2021
"""
22+
2123
def _update_attributes(self, status):
2224
#: A string label to differentiate this status from the status of
2325
#: other systems
@@ -49,11 +51,13 @@ def _repr(self):
4951

5052

5153
class CombinedStatus(GitHubCore):
52-
"""The :class:`CombinedStatus <CombinedStatus>` object. This represents
53-
combined information from the Repo Status API.
54+
"""The :class:`CombinedStatus <CombinedStatus>` object.
55+
56+
This represents combined information from the Repo Status API.
5457
5558
See also: http://developer.github.com/v3/repos/statuses/
5659
"""
60+
5761
def _update_attributes(self, combined_status):
5862
#: State of the combined status, e.g., 'success', 'pending', 'failure'
5963
self.state = self._get_attribute(combined_status, 'state')

0 commit comments

Comments
 (0)
0