We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db09a88 commit 2dcb254Copy full SHA for 2dcb254
2 files changed
resources/lib/twitch/api/v5/bits.py
@@ -7,7 +7,7 @@
7
8
9
@query
10
-def cheermotes(channel_id=None):
+def get_cheermotes(channel_id=None):
11
q = Qry('bits/actions')
12
q.add_param(keys.CHANNEL_ID, channel_id, None)
13
return q
resources/lib/twitch/api/v5/channel_feed.py
@@ -1,9 +1,8 @@
1
# -*- encoding: utf-8 -*-
2
# https://dev.twitch.tv/docs/v5/reference/channel-feed/
3
4
-from twitch import keys
+from twitch import keys, methods
5
from twitch.api.parameters import Boolean, Cursor
6
-from twitch import methods
from twitch.queries import V5Query as Qry
from twitch.queries import query
0 commit comments