diff --git a/werewolf/converters.py b/werewolf/converters.py index 376749d..f108666 100644 --- a/werewolf/converters.py +++ b/werewolf/converters.py @@ -25,4 +25,4 @@ else: # TODO: Get the game for context without making a new one # TODO: Get player from game based on either ID or member object - return target \ No newline at end of file + return target diff --git a/werewolf/player.py b/werewolf/player.py index 7aec179..c574109 100644 --- a/werewolf/player.py +++ b/werewolf/player.py @@ -44,4 +44,6 @@ class Player: ) except AttributeError: log.exception("Someone messed up and added a bot to the game (I think)") - await self.role.game.village_channel.send("Someone messed up and added a bot to the game :eyes:") + await self.role.game.village_channel.send( + "Someone messed up and added a bot to the game :eyes:" + ) diff --git a/werewolf/werewolf.py b/werewolf/werewolf.py index a9870ab..bd68a6f 100644 --- a/werewolf/werewolf.py +++ b/werewolf/werewolf.py @@ -137,7 +137,9 @@ class Werewolf(Cog): await ctx.maybe_send_embed("Category not found") return await self.config.guild(ctx.guild).category_id.set(category.id) - await ctx.maybe_send_embed("Game Channel Category has been set to **{}**".format(category.name)) + await ctx.maybe_send_embed( + "Game Channel Category has been set to **{}**".format(category.name) + ) @commands.guild_only() @wwset.command(name="channel") @@ -150,7 +152,9 @@ class Werewolf(Cog): await ctx.maybe_send_embed("Cleared Game Channel") else: await self.config.guild(ctx.guild).channel_id.set(channel.id) - await ctx.maybe_send_embed("Game Channel has been set to **{}**".format(channel.mention)) + await ctx.maybe_send_embed( + "Game Channel has been set to **{}**".format(channel.mention) + ) @commands.guild_only() @wwset.command(name="logchannel") @@ -163,7 +167,9 @@ class Werewolf(Cog): await ctx.maybe_send_embed("Cleared Game Log Channel") else: await self.config.guild(ctx.guild).log_channel_id.set(channel.id) - await ctx.maybe_send_embed("Game Log Channel has been set to **{}**".format(channel.mention)) + await ctx.maybe_send_embed( + "Game Log Channel has been set to **{}**".format(channel.mention) + ) @commands.group() async def ww(self, ctx: commands.Context):