Skip to content

Commit 3659dfc

Browse files
committed
lint fix
1 parent 7b894b0 commit 3659dfc

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/extractors/BaseCSVExtractor.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
const logger = require('../helpers/logger');
21
const { Extractor } = require('./Extractor');
32
const { CSVFileModule, CSVURLModule } = require('../modules');
43

src/extractors/CSVPatientExtractor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class CSVPatientExtractor extends BaseCSVExtractor {
6060
super({
6161
filePath,
6262
url,
63-
// csvSchema: CSVPatientSchema,
63+
csvSchema: CSVPatientSchema,
6464
unalterableColumns,
6565
});
6666
this.mask = mask;

test/helpers/csvParsingUtils.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const { normalizeEmptyValues, stringNormalizer } = require('../../src/helpers/csvParsingUtils.js');
1+
const { normalizeEmptyValues } = require('../../src/helpers/csvParsingUtils.js');
22

33
describe('csvParsingUtils', () => {
44
describe('normalizeEmptyValues', () => {

0 commit comments

Comments
 (0)