From f713780d4945fbcb612cb596063b7aab1973fed5 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 29 Mar 2024 07:17:51 -0400 Subject: [PATCH] feat(backup): added documentation link to cog-level help embed --- backup/backup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backup/backup.py b/backup/backup.py index 08d6c24..4a51c6f 100644 --- a/backup/backup.py +++ b/backup/backup.py @@ -22,7 +22,8 @@ class Backup(commands.Cog): """A utility to make reinstalling repositories and cogs after migrating the bot far easier.""" __author__ = ["SeaswimmerTheFsh"] - __version__ = "1.0.1" + __version__ = "1.1.0" + __documentation__ = "https://seacogs.coastalcommits.com/backup/" def __init__(self, bot: Red): super().__init__() @@ -36,6 +37,7 @@ class Backup(commands.Cog): f"{pre_processed}{n}", f"Cog Version: **{self.__version__}**", f"Author: {humanize_list(self.__author__)}", + f"Documentation: {self.__documentation__}", ] return "\n".join(text)