Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
andySigler committed Jun 29, 2023
1 parent f220757 commit f2e21db
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,9 +292,10 @@ def _record_measurement_and_store(m_type: MeasurementType) -> EnvironmentData:
)
reservoir_ml = round(liquid_tracker.get_volume(source) / 1000, 1)
print(f"software thinks there is {reservoir_ml} mL of liquid in the reservoir")
assert (
(reservoir_ml * 1000) - _MIN_END_VOLUME_UL > volume * channel_count
), f"not enough volume in reservoir to aspirate {volume} uL across {channel_count} channels"
assert (reservoir_ml * 1000) - _MIN_END_VOLUME_UL > volume * channel_count, (
f"not enough volume in reservoir to aspirate {volume} uL "
f"across {channel_count} channels"
)
# RUN ASPIRATE
aspirate_with_liquid_class(
ctx,
Expand Down

0 comments on commit f2e21db

Please sign in to comment.