Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Karl-Svard committed Oct 1, 2024
1 parent e0f49f7 commit d780769
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cg_lims/EPPs/udf/calculate/calculate_buffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def volume_buffer(
volume_udf: str,
buffer_udf: str,
sample_volume_limit: float,
maximum_volume: float,
max_volume: float,
):
"""Buffer volume calculation."""

Expand All @@ -85,7 +85,7 @@ def volume_buffer(
volume_udf=volume_udf,
buffer_udf=buffer_udf,
sample_volume_limit=sample_volume_limit,
maximum_volume=maximum_volume,
maximum_volume=int(max_volume),
)
message = "Volumes have been calculated."
LOG.info(message)
Expand Down

0 comments on commit d780769

Please sign in to comment.