Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Tags] Fix TypeError in dashboard #58

Merged
merged 3 commits into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Lemon's [Approved Cogs](https://cogboard.discord.red/t/approved-seina-cogs/1199)
|-------------|------------------|----------------------------------------------------------------------------------------------------------------------------------|
| AFK | 0.1.1 | <details>Away From Keyboard<summary>A cog for being afk and responding when idiots ping you</summary></details> |
| Info | 0.1.0 | <details>Extended info commands.</details><summary>Extended info commands such as userinfo.</summary> |
| Tags | 2.7.8 | <details>Create and use Tags<summary>Create and use custom commands with tagscript</summary></details> |
| Tags | 2.7.9 | <details>Create and use Tags<summary>Create and use custom commands with tagscript</summary></details> |
| SeinaTools | 0.1.4 | <details><summary>My tools for Red-DiscordBot</summary>Some cool utility tools for Red-DiscordBot</details> |
| BattleRoyale| 0.1.2 | <details><summary>Play battle royale</summary>Play battle royale with your friends or join automated matches</details> |
| PersonalChannels | 0.1.1 | <details><summary>Personal channel for members</summary>Personal channel for members</details> |
Expand Down
2 changes: 1 addition & 1 deletion tags/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion tags/dashboard/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
Loading