fix(backup): added a kwarg to backup_import

This commit is contained in:
Seaswimmer 2024-01-31 13:03:02 -05:00
parent 52f8439383
commit 702de21448
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -58,11 +58,10 @@ class Backup(commands.Cog):
@backup.command(name='import')
@commands.is_owner()
async def backup_import(self, ctx: commands.Context, export: str = None):
async def backup_import(self, ctx: commands.Context, *, export: str = None):
"""Import your installed repositories and cogs from an export."""
if export is None:
if not len(ctx.message.attachments) == 0:
export = await ctx.message.attachments[0].read()
if export is None and not len(ctx.message.attachments) == 0:
export = await ctx.message.attachments[0].read()
try:
export = json.loads(export)
except json.JSONDecodeError: