Skip to content

Commit 8ce0e57

Browse files
committed
fix temporary build errors
* handle long lines in docutils * create docs/_static directory
1 parent 0dc5e0e commit 8ce0e57

4 files changed

Lines changed: 12 additions & 7 deletions

File tree

docs/_static/.gitcreate

Whitespace-only changes.

twitch/api/v3/channels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
twitch.api.v3.channels
44
~~~~~~~~~~~~~~~~~~~~~~
55
6-
This module implements the functionality described here
6+
This module implements the functionality described here
77
https://github.com/justintv/Twitch-API/blob/master/v3_resources/channels.md
88
99
.. autofunction:: by_name(name)

twitch/api/v3/chat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
@query
2020
def by_channel(name):
2121
"""Get links object to other chat endpoints
22-
22+
2323
:param name: Name of the channel
2424
:returns: JSON Object describing other chat endpoints
2525
"""

twitch/api/v3/follows.py

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@
66
This module implements the functionality described here
77
https://github.com/justintv/Twitch-API/blob/master/v3_resources/follows.md
88
9-
.. autofunction:: by_channel(name, limit=25, offset=0, direction=Direction.DESC)
10-
.. autofunction:: by_user(name, limit=25, offset=0, direction=Direction.DESC, sort_by=SortBy.CREATED_AT)
9+
.. autofunction:: by_channel(name, limit=25, offset=0,\
10+
direction=Direction.DESC)
11+
.. autofunction:: by_user(name, limit=25, offset=0,\
12+
direction=Direction.DESC, sort_by=SortBy.CREATED_AT)
1113
.. autofunction:: status(user, target)
1214
"""
1315

@@ -22,9 +24,12 @@ def by_channel(name, limit=25, offset=0, direction=Direction.DESC):
2224
"""Get channel's list of following users
2325
2426
:param name: Name of the channel
25-
:param limit: Maximum number of objects in array. Default is 25. Maximum is 100.
26-
:param offset: Object offset for pagination. Default is 0.
27-
:param direction: Creation date sorting direction. Default is desc. Valid values are asc and desc.
27+
:param limit: Maximum number of objects in array.
28+
Default is 25. Maximum is 100.
29+
:param offset: Object offset for pagination.
30+
Default is 0.
31+
:param direction: Creation date sorting direction.
32+
Default is 'desc'. Valid values are 'asc' and 'desc'.
2833
:returns: JSON List of Follow objects
2934
"""
3035
q = Qry('channels/{channel}/follows')

0 commit comments

Comments
 (0)