fix(nerdify): pylint fix

This commit is contained in:
Seaswimmer 2024-01-07 14:09:07 +00:00
parent 2fc43a7933
commit 078ce53dc9
Signed by untrusted user: cswimr
GPG key ID: D74DDDDF420E13DF

View file

@ -16,11 +16,12 @@ from redbot.core.utils import chat_formatting, common_filters
class Nerdify(commands.Cog):
"""Nerdify your text."""
def __init__(self, bot):
self.bot = bot
__author__ = "SeaswimmerTheFsh"
__version__ = "1.3.0"
__version__ = "1.3.1"
def __init__(self, bot):
self.bot = bot
@commands.command(aliases=["nerd"])
async def nerdify(self, ctx: commands.Context, *, text: Optional[str] = None) -> None: