We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e2933e commit f3f44c7Copy full SHA for f3f44c7
pylabrobot/resources/thermo_fisher/plates.py
@@ -272,7 +272,9 @@ def Thermo_Nunc_96_well_plate_1300uL_Rb(name: str) -> Plate:
272
size_y=well_diameter,
273
size_z=31.6 - 1.4, # from definition, F - N
274
bottom_type=WellBottomType.U,
275
- material_z_thickness=31.6 - 29.1 - 1.4, # from definition, F - L - N
+ material_z_thickness=31.6 - 29.1 - 1.4, # from definition, F - L - N
276
cross_section_type=CrossSectionType.CIRCLE,
277
- compute_height_from_volume = lambda liquid_volume: liquid_volume / (math.pi * ((well_diameter/2)**2))),
278
- )
+ compute_height_from_volume=lambda liquid_volume: liquid_volume
+ / (math.pi * ((well_diameter / 2) ** 2)),
279
+ ),
280
+ )
0 commit comments