linted files according to linter

This commit is contained in:
2025-11-08 21:09:55 -05:00
parent 7cf4a47a60
commit 52b8b60793
5 changed files with 3 additions and 7 deletions

View File

@@ -17,7 +17,7 @@ module.exports = {
id = interaction.options.getInteger('id');
console.log(`Profile: Looking up "${id}"`)
}
userdata = await torn.user.profile(id).catch(console.error);
let userdata = await torn.user.profile(id).catch(console.error);
if (!userdata.name) {
console.log("Profile: Unable to resolve profile")
await interaction.reply("Failed to get profile data :(").catch(console.error);