fix(moderation): reverted previous changes (they dont work lmao)

This commit is contained in:
Seaswimmer 2023-12-16 13:55:50 -05:00
parent d300ba60da
commit 30ea17cfb6
Signed by untrusted user: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -5,7 +5,6 @@
# ____) | __/ (_| \__ \\ V V /| | | | | | | | | | | | __/ |
# |_____/ \___|\__,_|___/ \_/\_/ |_|_| |_| |_|_| |_| |_|\___|_|
import asyncio
import logging
import json
import time
@ -1739,7 +1738,6 @@ class Moderation(commands.Cog):
file = await self.ctx.message.attachments[0].read()
data = sorted(json.loads(file), key=lambda x: x['case'])
async def process_case(case, accepted_types, interaction: discord.Interaction):
for case in data:
if case['type'] not in accepted_types:
continue
@ -1748,7 +1746,7 @@ class Moderation(commands.Cog):
if case['duration']:
try:
duration = timedelta(seconds=round(case['duration']) / 1000)
duration = timedelta(seconds=round(float(case['duration']) / 1000))
except OverflowError:
continue
@ -1794,11 +1792,6 @@ class Moderation(commands.Cog):
await interaction.edit_original_response(content="Import complete.")
async def process_cases(data, accepted_types, interaction):
await asyncio.gather(*[process_case(case, accepted_types, interaction) for case in data])
await process_cases(data, accepted_types, interaction)
@discord.ui.button(label="No", style=discord.ButtonStyle.danger)
async def import_button_n(self, interaction: discord.Interaction, button: discord.ui.Button): # pylint: disable=unused-argument
await self.message.edit("Import cancelled.", view=None)