Skip to content

Commit f3f44c7

Browse files
committed
format
1 parent 5e2933e commit f3f44c7

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

pylabrobot/resources/thermo_fisher/plates.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,9 @@ def Thermo_Nunc_96_well_plate_1300uL_Rb(name: str) -> Plate:
272272
size_y=well_diameter,
273273
size_z=31.6 - 1.4, # from definition, F - N
274274
bottom_type=WellBottomType.U,
275-
material_z_thickness=31.6 - 29.1 - 1.4, # from definition, F - L - N
275+
material_z_thickness=31.6 - 29.1 - 1.4, # from definition, F - L - N
276276
cross_section_type=CrossSectionType.CIRCLE,
277-
compute_height_from_volume = lambda liquid_volume: liquid_volume / (math.pi * ((well_diameter/2)**2))),
278-
)
277+
compute_height_from_volume=lambda liquid_volume: liquid_volume
278+
/ (math.pi * ((well_diameter / 2) ** 2)),
279+
),
280+
)

0 commit comments

Comments
 (0)