versioning removed, not needed after inspection
This commit is contained in:
parent
ac279fdc5d
commit
13f7588681
2 changed files with 1 additions and 5 deletions
|
@ -4,8 +4,6 @@ import discord
|
|||
class Galaxy(commands.Cog):
|
||||
"""Custom cog intended for use on the Galaxy discord server."""
|
||||
|
||||
__version__ = "1.0.0"
|
||||
|
||||
def __init__(self, bot):
|
||||
self.bot = bot
|
||||
|
||||
|
|
|
@ -13,8 +13,6 @@ class Suggestions(commands.Cog):
|
|||
Adds a suggestions system.
|
||||
"""
|
||||
|
||||
__version__ = "1.0.1"
|
||||
|
||||
def __init__(self, bot: Red):
|
||||
self.bot = bot
|
||||
self.config = Config.get_conf(
|
||||
|
@ -60,7 +58,7 @@ class Suggestions(commands.Cog):
|
|||
|
||||
def format_help_for_context(self, ctx: commands.Context) -> str:
|
||||
context = super().format_help_for_context(ctx)
|
||||
return f"{context}\n\nVersion: {self.__version__}"
|
||||
return f"{context}"
|
||||
|
||||
@commands.command()
|
||||
@commands.guild_only()
|
||||
|
|
Loading…
Reference in a new issue