Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 1, 2024
1 parent 2c35370 commit 113cdca
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion taxonium_data_handling/importing.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,13 @@ function reduceMaxOrMin(array, accessFunction, maxOrMin) {
}
}

export const setUpStream = (the_stream, data, sendStatusMessage, parser, streamValues) => {
export const setUpStream = (
the_stream,
data,
sendStatusMessage,
parser,
streamValues
) => {
const pipeline = the_stream
.pipe(parser({ jsonStreaming: true }))
.pipe(streamValues());
Expand Down

0 comments on commit 113cdca

Please sign in to comment.