Skip to content

Commit 82705c6

Browse files
authored
removed user_login reference. fixes #186 (#187)
1 parent a8e7ece commit 82705c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

twitchio/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ class Stream:
551551

552552
def __init__(self, http: "TwitchHTTP", data: dict):
553553
self.id: int = data["id"]
554-
self.user = PartialUser(http, data["user_id"], data["user_name"], data["user_login"])
554+
self.user = PartialUser(http, data["user_id"], data["user_name"])
555555
self.game_id: int = data["game_id"]
556556
self.game_name: str = data["game_name"]
557557
self.type: str = data["type"]

0 commit comments

Comments
 (0)