Skip to content

Commit

Permalink
Update cg_lims/EPPs/udf/calculate/calculate_amount_ng.py
Browse files Browse the repository at this point in the history
Co-authored-by: Karl Svärd <[email protected]>
  • Loading branch information
idalindegaard and Karl-Svard authored Jan 16, 2025
1 parent 373ac80 commit 42740b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cg_lims/EPPs/udf/calculate/calculate_amount_ng.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def calculate_amount_ng(
artifacts_with_missing_udf: List = []
for artifact in artifacts:
if preset_volume:
vol = float(preset_volume)
vol: float = float(preset_volume)
elif total_volume_pudf:
vol: float = process.udf.get(total_volume_pudf)
elif volume_udf:
Expand Down

0 comments on commit 42740b9

Please sign in to comment.