cleaning up more
This commit is contained in:
parent
6909900181
commit
452f130ec1
1 changed files with 2 additions and 2 deletions
|
@ -10,8 +10,8 @@ class Info(commands.Cog):
|
||||||
self.client = client
|
self.client = client
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def rgb_to_hex(r, g, b): # pylint: disable=invalid-name
|
def rgb_to_hex(R, G, B):
|
||||||
return '#{:02x}{:02x}{:02x}'.format(r, g, b) # pylint: disable=consider-using-f-string
|
return f'#{R:02x}{G:02x}{B:02x}'
|
||||||
|
|
||||||
async def upload_to_revolt(self, ctx: commands.Context, asset: revolt.Asset, color: bool = False):
|
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."""
|
"""Uploads an asset to Revolt and returns the asset ID."""
|
||||||
|
|
Loading…
Reference in a new issue