misc(backup): condensed some code more

This commit is contained in:
Seaswimmer 2024-01-31 13:22:56 -05:00
parent ac761d9284
commit 7fdb106fad
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -62,8 +62,7 @@ class Backup(commands.Cog):
async def backup_import(self, ctx: commands.Context):
"""Import your installed repositories and cogs from an export file."""
try:
export_raw = await ctx.message.attachments[0].read()
export = json.loads(export_raw)
export = json.loads(await ctx.message.attachments[0].read())
except (json.JSONDecodeError, IndexError):
await ctx.send(error("Please provide a valid JSON export file."))
return