Skip to content

Commit 7b67774

Browse files
committed
apply black
1 parent 01d4072 commit 7b67774

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

twitchio/user.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1567,7 +1567,9 @@ def __init__(self, http: "TwitchHTTP", data: dict):
15671567
self.description: str = data["description"]
15681568
self.profile_image: str = data["profile_image_url"]
15691569
self.offline_image: str = data["offline_image_url"]
1570-
self.view_count: Tuple[int] = (data.get("view_count", 0),) # this isn't supposed to be a tuple but too late to fix it!
1570+
self.view_count: Tuple[int] = (
1571+
data.get("view_count", 0),
1572+
) # this isn't supposed to be a tuple but too late to fix it!
15711573
self.created_at = parse_timestamp(data["created_at"])
15721574
self.email: Optional[str] = data.get("email")
15731575
self._cached_rewards = None

0 commit comments

Comments
 (0)