Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieulemieux committed Aug 28, 2024
1 parent f00e027 commit 51e587f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/entrez/gene.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const fetchAndLoadGeneByIds = async (api, idListIn, opt = {}) => {
target: 'Feature',
upsert,
},
)
);
};

/**
Expand Down
9 changes: 8 additions & 1 deletion src/entrez/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,14 @@ const preLoadCache = async (api, { sourceDefn, cache, target }) => {
* @param {boolean} opt.upsert override uploadRecord() upsert
*/
const fetchAndLoadByIds = async (api, idListIn, {
dbName, fetchFirst, parser, cache, MAX_CONSEC = 100, target, sourceDefn, upsert
dbName,
fetchFirst,
parser,
cache,
MAX_CONSEC = 100,
target,
sourceDefn,
upsert,
}) => {
const records = await fetchByIdList(
idListIn,
Expand Down

0 comments on commit 51e587f

Please sign in to comment.