Skip to content

Commit

Permalink
fixing lint error w/ max length
Browse files Browse the repository at this point in the history
  • Loading branch information
ceciliazaragoza committed Feb 26, 2025
1 parent ec6906a commit a4162b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server/dals/protein-dal.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ const buildGenerateProteinNetworkQuery = function (proteins, timestamp, source)
const buildQueryByType = function (query) {
const networkQueries = {
NetworkSource: () => buildNetworkSourceQuery(),
NetworkFromGeneProtein: () => buildNetworkFromGeneProteinQuery(query.geneProtein, query.timestamp, query.source),
NetworkFromGeneProtein: () =>
buildNetworkFromGeneProteinQuery(query.geneProtein, query.timestamp, query.source),
GenerateProteinNetwork: () => buildGenerateProteinNetworkQuery(query.proteins, query.timestamp, query.source),
};
if (Object.keys(networkQueries).includes(query.type)) {
Expand Down

0 comments on commit a4162b4

Please sign in to comment.