Skip to content

Commit

Permalink
Fix Steam
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLovinator1 committed Nov 21, 2023
1 parent 0bc2c4d commit 5085c4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discord_free_game_notifier/steam.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def get_game_name(game: dict) -> str:
"""
game_name_class: Tag = game.find("span", class_="title") # type: ignore # noqa: PGH003
game_name: str = game_name_class.text
logger.bind(game_name=get_game_name(game=game)).info(f"Game: {game_name}")
logger.bind(game_name=game_name).info(f"Game: {game_name}")
return game_name


Expand Down

0 comments on commit 5085c4a

Please sign in to comment.