Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ghoshkaj committed Dec 10, 2018
1 parent b7b73a1 commit 4ead990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion features/step_definitions/distance_matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function tableParse(table, noRoute, annotation, callback) {
} else {
result = json[annotation].map(row => {
var hashes = {};
row.forEach((v, i) => { hashes[tableRows[0][i+1]] = parse(v) ? '' : v; });
row.forEach((v, i) => { hashes[tableRows[0][i+1]] = parse(v) ? '' : v; });
return hashes;
});
}
Expand Down

0 comments on commit 4ead990

Please sign in to comment.