diff --git a/src/main.py b/src/main.py index 5b4d8e9..8c4b737 100644 --- a/src/main.py +++ b/src/main.py @@ -7,7 +7,8 @@ from src.bot.discord.bot import NucuBot def main(): settings = Settings() bot = NucuBot.create( - command_prefix=settings.discord.command_prefix, game_name=settings.game_name + command_prefix=settings.discord.command_prefix, + game_name=settings.discord.game_name, ) bot.run(settings.discord.token)