From 4599ef954f9b179513272f07ad40e55d5297230a Mon Sep 17 00:00:00 2001 From: Gus Caplan Date: Fri, 11 Dec 2020 14:46:28 -0600 Subject: [PATCH] lint --- src/structures/Interaction.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/structures/Interaction.js b/src/structures/Interaction.js index c3b931e2..6141ff90 100644 --- a/src/structures/Interaction.js +++ b/src/structures/Interaction.js @@ -2,7 +2,6 @@ const APIMessage = require('./APIMessage'); const Base = require('./Base'); -const { InteractionResponseType } = require('../util/Constants'); const Snowflake = require('../util/Snowflake'); /** @@ -99,8 +98,8 @@ class Interaction extends Base { const resolved = await apiMessage.resolveFiles(); if (!this.handler(resolved)) { - const clientID = this.client.interactionClient.clientID - || (await this.client.api.oauth2.applications('@me').get()).id; + const clientID = + this.client.interactionClient.clientID || (await this.client.api.oauth2.applications('@me').get()).id; await this.client.api.webhooks(clientID, this.token).post({ auth: false,