Skip to content

Commit

Permalink
Remove tags from WishlistApp for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Gobot1234 committed Jan 4, 2024
1 parent b252796 commit 83c7f60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions steam/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1601,7 +1601,7 @@ class WishlistApp(PartialApp[str]):
"review_status",
"score",
"screenshots",
"tags",
# "tags",
"total_reviews",
"type",
"partial_packages",
Expand Down Expand Up @@ -1640,8 +1640,8 @@ def __init__(self, state: ConnectionState, id: int, data: app.WishlistApp):
"""The time that the app was added to their wishlist."""
self.background = CDNAsset(state, data["background"])
"""The background of the app."""
self.tags = [Tag(state, int(tag)) for tag in data["tags"]]
"""The tags of the app."""
# self.tags = [Tag(state, int(tag)) for tag in data["tags"]]
# """The tags of the app."""
self.rank = data["rank"]
"""The global rank of the app by popularity."""
self.partial_packages: list[PartialPackage] = []
Expand Down

0 comments on commit 83c7f60

Please sign in to comment.