From c724fd3b297055208ba72a53df8828f04f6568d9 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sun, 31 Oct 2021 13:38:47 +0000 Subject: [PATCH] Format code with black, yapf, autopep8 and isort This commit fixes the style issues introduced in ae254fb according to the output from black, yapf, autopep8 and isort. Details: https://deepsource.io/gh/The-4th-Hokage/yondaime-hokage/transform/2aa9a7a5-f5d7-4cf9-9386-a8cf7548d8f1/ --- minato_namikaze/bot_files/cogs/fun/random_fun_games.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/minato_namikaze/bot_files/cogs/fun/random_fun_games.py b/minato_namikaze/bot_files/cogs/fun/random_fun_games.py index 9009353d..b9284747 100644 --- a/minato_namikaze/bot_files/cogs/fun/random_fun_games.py +++ b/minato_namikaze/bot_files/cogs/fun/random_fun_games.py @@ -80,7 +80,12 @@ async def magic(self, ctx, user: discord.Member = None): @commands.cooldown(1, 40, commands.BucketType.guild) async def qr(self, ctx, colour="255-255-255", *, url=None): """Generates easy QR Code""" - colours = {"255-255-255": "255-255-255", "black": "0-0-0", "red": "FF0000", "blue": "00f"} + colours = { + "255-255-255": "255-255-255", + "black": "0-0-0", + "red": "FF0000", + "blue": "00f", + } col = ["black", "red", "blue"] if colour == "255-255-255": col = ["255-255-255", "red", "blue"]