From 452f130ec19f696a2b1f5e6b81f3c9147609a757 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh <102361830+SeaswimmerTheFsh@users.noreply.github.com> Date: Sat, 1 Jul 2023 10:05:57 -0400 Subject: [PATCH] cleaning up more --- cogs/info.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/info.py b/cogs/info.py index 3661497..5578d6e 100644 --- a/cogs/info.py +++ b/cogs/info.py @@ -10,8 +10,8 @@ class Info(commands.Cog): self.client = client @staticmethod - def rgb_to_hex(r, g, b): # pylint: disable=invalid-name - return '#{:02x}{:02x}{:02x}'.format(r, g, b) # pylint: disable=consider-using-f-string + def rgb_to_hex(R, G, B): + return f'#{R:02x}{G:02x}{B:02x}' async def upload_to_revolt(self, ctx: commands.Context, asset: revolt.Asset, color: bool = False): """Uploads an asset to Revolt and returns the asset ID."""