Skip to content

Commit 0f51ada

Browse files
authored
fix(step-generation): remove indent from load liquid array (#18842)
1 parent cb4f90a commit 0f51ada

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

step-generation/src/__tests__/pythonFileUtils.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ well_plate_2.load_liquid(
489489
wells=[
490490
"D1", "D2", "D3", "D4", "D5", "D6", "D7", "D8",
491491
"E3"
492-
],
492+
],
493493
liquid=liquid_2,
494494
volume=180,
495495
)`.trimStart()

step-generation/src/utils/pythonFileUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ export function getLoadLiquids(
364364
const pythonWells =
365365
formattedWells.length < 8
366366
? formattedWells.join(', ')
367-
: `\n${indentedWells}\n${INDENT}`
367+
: `\n${indentedWells}\n`
368368

369369
const loadLiquidArgs = [
370370
`wells=[${pythonWells}],\n` +

0 commit comments

Comments
 (0)