Fix ESLint

This commit is contained in:
Amish Shah
2016-08-30 13:55:50 +01:00
parent 907c1ed9f9
commit 49d525109f
3 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@@ -38,7 +38,7 @@ class GuildDeleteAction extends Action {
}
scheduleForDeletion(id) {
this.client.setTimeout(() => delete this.deleted[id], this.client.options.rest_ws_bridge_timeout)
this.client.setTimeout(() => delete this.deleted[id], this.client.options.rest_ws_bridge_timeout);
}
}

View File

@@ -36,7 +36,7 @@ class GuildRoleDeleteAction extends Action {
}
scheduleForDeletion(guildID, roleID) {
this.client.setTimeout(() => delete this.deleted[guildID + roleID], this.client.options.rest_ws_bridge_timeout)
this.client.setTimeout(() => delete this.deleted[guildID + roleID], this.client.options.rest_ws_bridge_timeout);
}
}