Skip to content

Commit

Permalink
Fix class names.
Browse files Browse the repository at this point in the history
  • Loading branch information
jreed1701 committed Jun 3, 2024
1 parent 7fc069a commit 06fad65
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions application/games/satisfactory_game.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
from application.models.games import Games


class VrisingGame(BaseGame):
class Satisfactory(BaseGame):
def __init__(self, defaults_dict: dict = {}) -> None:
super(VrisingGame, self).__init__(defaults_dict)
super(Satisfactory, self).__init__(defaults_dict)

self._game_name = "satisfactory"
self._game_pretty_name = "Satisfactory"
Expand Down
4 changes: 2 additions & 2 deletions application/games/valheim_game.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
from application.models.games import Games


class VrisingGame(BaseGame):
class ValheimGame(BaseGame):
def __init__(self, defaults_dict: dict = {}) -> None:
super(VrisingGame, self).__init__(defaults_dict)
super(ValheimGame, self).__init__(defaults_dict)

self._game_name = "valheim"
self._game_pretty_name = "Valheim"
Expand Down

0 comments on commit 06fad65

Please sign in to comment.