Skip to content

Commit db09a88

Browse files
committed
add missing imports
1 parent 006a1dd commit db09a88

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

resources/lib/twitch/api/v5/__init__.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
# -*- encoding: utf-8 -*-
22
# https://dev.twitch.tv/docs/
33

4+
from twitch.api.v5 import bits # NOQA
5+
from twitch.api.v5 import channel_feed # NOQA
46
from twitch.api.v5 import channels # NOQA
7+
from twitch.api.v5 import chat # NOQA
8+
from twitch.api.v5 import collections # NOQA
9+
from twitch.api.v5 import communities # NOQA
510
from twitch.api.v5 import games # NOQA
611
from twitch.api.v5 import ingests # NOQA
12+
from twitch.api.v5.root import root # NOQA
713
from twitch.api.v5 import search # NOQA
814
from twitch.api.v5 import streams # NOQA
915
from twitch.api.v5 import teams # NOQA
1016
from twitch.api.v5 import users # NOQA
1117
from twitch.api.v5 import videos # NOQA
12-
from twitch.api.v5 import communities # NOQA
13-
from twitch.api.v5.root import root # NOQA

resources/lib/twitch/api/v5/root.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from twitch.queries import query
66

77

8-
# TODO token as parameter
98
@query
109
def root():
1110
return Qry('')

0 commit comments

Comments
 (0)