versioning removed, not needed after inspection

This commit is contained in:
Seaswimmer 2023-02-27 13:34:08 -05:00
parent ac279fdc5d
commit 13f7588681
2 changed files with 1 additions and 5 deletions

View file

@ -4,8 +4,6 @@ import discord
class Galaxy(commands.Cog): class Galaxy(commands.Cog):
"""Custom cog intended for use on the Galaxy discord server.""" """Custom cog intended for use on the Galaxy discord server."""
__version__ = "1.0.0"
def __init__(self, bot): def __init__(self, bot):
self.bot = bot self.bot = bot

View file

@ -13,8 +13,6 @@ class Suggestions(commands.Cog):
Adds a suggestions system. Adds a suggestions system.
""" """
__version__ = "1.0.1"
def __init__(self, bot: Red): def __init__(self, bot: Red):
self.bot = bot self.bot = bot
self.config = Config.get_conf( self.config = Config.get_conf(
@ -60,7 +58,7 @@ class Suggestions(commands.Cog):
def format_help_for_context(self, ctx: commands.Context) -> str: def format_help_for_context(self, ctx: commands.Context) -> str:
context = super().format_help_for_context(ctx) context = super().format_help_for_context(ctx)
return f"{context}\n\nVersion: {self.__version__}" return f"{context}"
@commands.command() @commands.command()
@commands.guild_only() @commands.guild_only()