diff --git a/README.md b/README.md index 6744f31..f50f4d2 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Lemon's [Approved Cogs](https://cogboard.discord.red/t/approved-seina-cogs/1199) |-------------|------------------|----------------------------------------------------------------------------------------------------------------------------------| | AFK | 0.1.1 |
Away From KeyboardA cog for being afk and responding when idiots ping you
| | Info | 0.1.0 |
Extended info commands.
Extended info commands such as userinfo. | -| Tags | 2.7.8 |
Create and use TagsCreate and use custom commands with tagscript
| +| Tags | 2.7.9 |
Create and use TagsCreate and use custom commands with tagscript
| | SeinaTools | 0.1.4 |
My tools for Red-DiscordBotSome cool utility tools for Red-DiscordBot
| | BattleRoyale| 0.1.2 |
Play battle royalePlay battle royale with your friends or join automated matches
| | PersonalChannels | 0.1.1 |
Personal channel for membersPersonal channel for members
| diff --git a/tags/core.py b/tags/core.py index 9214e07..a5b7c55 100644 --- a/tags/core.py +++ b/tags/core.py @@ -67,7 +67,7 @@ class Tags( The TagScript documentation can be found [here](https://seina-cogs.readthedocs.io/en/latest/). """ - __version__: Final[str] = "2.7.8" + __version__: Final[str] = "2.7.9" __author__: Final[List[str]] = ["inthedark.org", "PhenoM4n4n", "sravan", "npc203"] def __init__(self, bot: Red) -> None: diff --git a/tags/dashboard/core.py b/tags/dashboard/core.py index 80ce503..c4edb31 100644 --- a/tags/dashboard/core.py +++ b/tags/dashboard/core.py @@ -55,7 +55,7 @@ class TagForm(kwargs["Form"]): ) class TagsForm(kwargs["Form"]): - tags: wtforms.FieldList[wtforms.FormField[TagForm]] = wtforms.FieldList( + tags: wtforms.FieldList = wtforms.FieldList( wtforms.FormField(TagForm) ) submit: wtforms.SubmitField = wtforms.SubmitField("Save Modifications")