Skip to content

Commit

Permalink
Remove tag_ids from Stream
Browse files Browse the repository at this point in the history
  • Loading branch information
chillymosh committed Mar 20, 2024
1 parent 165838d commit 87e5bf4
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions twitchio/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,13 +536,6 @@ class Stream:
Language of the channel.
thumbnail_url: :class:`str`
Thumbnail URL of the stream.
tag_ids: List[:class:`str`]
Tag IDs that apply to the stream.
.. warning::
This field will be deprecated by twitch in 2023.
is_mature: :class:`bool`
Indicates whether the stream is intended for mature audience.
tags: List[:class:`str`]
Expand All @@ -561,7 +554,6 @@ class Stream:
"started_at",
"language",
"thumbnail",
"tag_ids",
"is_mature",
"tags",
)
Expand All @@ -579,7 +571,6 @@ def __init__(self, data: StreamResponse, *, http: HTTPClient) -> None:
self.started_at = parse_timestamp(data["started_at"])
self.language: str = data["language"]
self.thumbnail: Asset = Asset(data["thumbnail_url"], http=http)
self.tag_ids: list[str] = data["tag_ids"] or []
self.is_mature: bool = data["is_mature"]
self.tags: list[str] = data["tags"]

Expand Down

0 comments on commit 87e5bf4

Please sign in to comment.