Skip to content

Commit d4719cf

Browse files
committed
[v5] games and ingests descriptive function naming
1 parent 58f01ee commit d4719cf

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
@query
10-
def top(limit=10, offset=0):
10+
def get_top_games(limit=10, offset=0):
1111
q = Qry('games/top')
1212
q.add_param(keys.LIMIT, limit, 10)
1313
q.add_param(keys.OFFSET, offset, 0)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66

77

88
@query
9-
def get():
9+
def get_ingest_servers():
1010
q = Qry('ingests')
1111
return q

0 commit comments

Comments
 (0)