Fix lint issue

This commit is contained in:
Matt 2019-04-02 17:01:47 +01:00
parent 8445165491
commit 7796c473ae
No known key found for this signature in database
GPG key ID: 2DD462FE98BF38C2

View file

@ -45,7 +45,7 @@ class Bzip2Compress extends Operation {
* @returns {File}
*/
run(input, args) {
const [blockSize, workFactor, filename] = args;
const [blockSize, workFactor] = args;
if (input.byteLength <= 0) {
throw new OperationError("Please provide an input.");
}