Skip to content

Commit d256e87

Browse files
author
AJ Keller
committed
FIX: Forgot to make it snazzy
1 parent b10fa1b commit d256e87

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

openBCICyton.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1210,17 +1210,15 @@ Cyton.prototype.syncRegisterSettings = function () {
12101210
// Remove the timeout!
12111211
clearTimeout(badCommsTimeout);
12121212
badCommsTimeout = null;
1213-
12141213
});
12151214
this.curParsingMode = k.OBCIParsingEOT;
12161215

12171216
this.write(k.OBCIMiscQueryRegisterSettings)
12181217
.catch((err) => {
12191218
clearTimeout(badCommsTimeout);
12201219
reject(err);
1221-
})
1220+
});
12221221
});
1223-
12241222
};
12251223

12261224
/**

test/openBCICyton-test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const bluebirdChecks = require('./bluebirdChecks');
33
const sinon = require('sinon');
44
const chai = require('chai');
55
const expect = chai.expect;
6-
const should = chai.should(); // eslint-disable-line no-unused-lets
6+
const should = chai.should(); // eslint-disable-line no-unused-vars
77
const Cyton = require('../openBCICyton');
88
const OpenBCIUtilities = require('openbci-utilities');
99
const openBCIUtilities = OpenBCIUtilities.Utilities;
@@ -1362,7 +1362,6 @@ describe('openbci-sdk', function () {
13621362
done();
13631363
}).catch(done);
13641364
});
1365-
13661365
});
13671366
describe('#testSignal', function () {
13681367
it('should call the write function with proper command for dc test signal', function (done) {

0 commit comments

Comments
 (0)