Skip to content

Commit 7727f97

Browse files
authored
Fixes Lint error
1 parent 54780d1 commit 7727f97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/engine/utils/TSQuadraticSeries.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export function createTSQuadraticSeries (maxSeriesLength = 0) {
5454
* Invariant: BinrySearchTree A contains all calculated a's (as in the general formula y = a * x^2 + b * x + c),
5555
* where the a's are labeled in the BinarySearchTree with their Xi when they BEGIN in the point (Xi, Yi)
5656
*/
57-
/* eslint-disable max-statements - A lot of variables have to be set */
57+
/* eslint-disable max-statements -- A lot of variables have to be set */
5858
function push (x, y, w = 1) {
5959
if (x === undefined || isNaN(x) || y === undefined || isNaN(y)) { return }
6060

0 commit comments

Comments
 (0)