forked from cswimr/SeaCogs
fix(moderation): fixed metadata importing again
This commit is contained in:
parent
67836d034d
commit
fe7193601b
1 changed files with 5 additions and 4 deletions
|
@ -1,5 +1,6 @@
|
||||||
from datetime import timedelta, datetime
|
from datetime import timedelta, datetime
|
||||||
import json
|
import json
|
||||||
|
from typing import Dict
|
||||||
from redbot.core import commands
|
from redbot.core import commands
|
||||||
from discord import Message, ButtonStyle, Interaction, ui
|
from discord import Message, ButtonStyle, Interaction, ui
|
||||||
from ..database import connect, create_guild_table, mysql_log
|
from ..database import connect, create_guild_table, mysql_log
|
||||||
|
@ -63,7 +64,7 @@ class ImportModerationView(ui.View):
|
||||||
if "metadata" not in case:
|
if "metadata" not in case:
|
||||||
metadata = {}
|
metadata = {}
|
||||||
else:
|
else:
|
||||||
metadata: dict = case["metadata"]
|
metadata: Dict[str, any] = case["metadata"]
|
||||||
metadata.update({
|
metadata.update({
|
||||||
'imported_from': 'SeaCogs/Moderation'
|
'imported_from': 'SeaCogs/Moderation'
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue