Skip to content

Commit

Permalink
Merge pull request #58 from sravan1946/patch-1
Browse files Browse the repository at this point in the history
[Tags] Fix TypeError in dashboard
  • Loading branch information
japandotorg authored Jul 23, 2024
2 parents f422cfb + 190bb33 commit c2ac960
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit c2ac960

Please sign in to comment.