Backup #16

Merged
cswimr merged 41 commits from backup into main 2024-01-31 15:58:08 -05:00
Showing only changes of commit 045d51bc23 - Show all commits

View file

@ -61,8 +61,9 @@ class Backup(commands.Cog):
async def backup_import(self, ctx: commands.Context, json: str = None): async def backup_import(self, ctx: commands.Context, json: str = None):
"""Import your installed repositories and cogs from an export.""" """Import your installed repositories and cogs from an export."""
if json is None: if json is None:
json = await ctx.message.attachments[0].read() if ctx.message.attachments is not None:
if json is None: json = await ctx.message.attachments[0].read()
else:
await ctx.send(error("Please provide a valid JSON export.")) await ctx.send(error("Please provide a valid JSON export."))
return return