Skip to content

Commit b835a15

Browse files
committed
style(itk-wasm): add linter updates to pipeline query params
1 parent f53707b commit b835a15

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/core/typescript/itk-wasm/src/pipeline/pipelines-query-params.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import RunPipelineOptions from "./run-pipeline-options"
1+
import RunPipelineOptions from './run-pipeline-options'
22

33
let pipelinesQueryParams: RunPipelineOptions['pipelineQueryParams'] | undefined
44

packages/core/typescript/itk-wasm/src/pipeline/run-pipeline.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ async function runPipeline (
9797
const pipelineModule = await loadPipelineModule(
9898
pipelinePath.toString(),
9999
options?.pipelineBaseUrl,
100-
options?.pipelineQueryParams ?? defaultPipelinesQueryParams(),
100+
options?.pipelineQueryParams ?? defaultPipelinesQueryParams()
101101
)
102102
const result = runPipelineEmscripten(pipelineModule, args, outputs, inputs)
103103
return result
@@ -108,7 +108,7 @@ async function runPipeline (
108108
const { workerProxy, worker: usedWorker } = await createWorkerProxy(
109109
worker as Worker | null,
110110
pipelineWorkerUrlString as string | undefined | null,
111-
options?.pipelineQueryParams ?? defaultPipelinesQueryParams(),
111+
options?.pipelineQueryParams ?? defaultPipelinesQueryParams()
112112
)
113113
worker = usedWorker
114114
const transferables: Array<ArrayBuffer | TypedArray | null> = []

0 commit comments

Comments
 (0)