From 4247257850634689ba385d19c0326ddce71df9cd Mon Sep 17 00:00:00 2001 From: Rajeh Taher Date: Wed, 10 Aug 2022 19:55:06 +0300 Subject: [PATCH] ERROR/ESLINT --- src/structures/GroupChat.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/structures/GroupChat.js b/src/structures/GroupChat.js index 9d13d48..cf68b49 100644 --- a/src/structures/GroupChat.js +++ b/src/structures/GroupChat.js @@ -91,7 +91,7 @@ class GroupChat extends Chat { * @returns {Promise>} */ async removeParticipants(participantIds, sleep = null) { - return return this._changeParticipants(participantIds, 'remove', sleep); + return this._changeParticipants(participantIds, 'remove', sleep); } /** @@ -101,7 +101,7 @@ class GroupChat extends Chat { * @returns {Promise>} */ async promoteParticipants(participantIds, sleep = null) { - return return this._changeParticipants(participantIds, 'promote', sleep); + return this._changeParticipants(participantIds, 'promote', sleep); } /** @@ -111,7 +111,7 @@ class GroupChat extends Chat { * @returns {Promise>} */ async demoteParticipants(participantIds, sleep = null) { - return return this._changeParticipants(participantIds, 'demote', sleep); + return this._changeParticipants(participantIds, 'demote', sleep); } /**