From f717fddeae168bdd2fb7af18ae4f4a0d517bb94b Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Sat, 6 Sep 2025 18:12:19 -0400 Subject: [PATCH] Fix lint --- commands/edit-image/create-qr-code.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-image/create-qr-code.js b/commands/edit-image/create-qr-code.js index 18dc7795..6602878a 100644 --- a/commands/edit-image/create-qr-code.js +++ b/commands/edit-image/create-qr-code.js @@ -18,7 +18,7 @@ module.exports = class CreateQRCodeCommand extends Command { }); } - async run(msg, { text }) { + run(msg, { text }) { const qr = this.createQRCode(text); return msg.say({ files: [{ attachment: qr, name: 'qr-code.png' }] }); }