From 1d4454700b66b74900a770180cc041e40bff45ab Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Sat, 16 Aug 2025 22:15:26 -0400 Subject: [PATCH] Fix lint --- commands/games-sp/jeopardy.js | 1 - structures/JeopardyScrape.js | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/commands/games-sp/jeopardy.js b/commands/games-sp/jeopardy.js index 06d1d4bd..4a0c86b0 100644 --- a/commands/games-sp/jeopardy.js +++ b/commands/games-sp/jeopardy.js @@ -1,5 +1,4 @@ const Command = require('../../framework/Command'); -const request = require('node-superfetch'); const { createCanvas, loadImage } = require('@napi-rs/canvas'); const path = require('path'); const { reactIfAble } = require('../../util/Util'); diff --git a/structures/JeopardyScrape.js b/structures/JeopardyScrape.js index b81ba494..c08dc7d2 100644 --- a/structures/JeopardyScrape.js +++ b/structures/JeopardyScrape.js @@ -12,7 +12,7 @@ module.exports = class JeopardyScrape { } async fetchSeasons() { - const { text } = await request.get(`https://j-archive.com/listseasons.php`) + const { text } = await request.get(`https://j-archive.com/listseasons.php`); const $ = cheerio.load(text); const seasons = []; $('table td a').each((j, elem) => {