Skip to content

Commit

Permalink
feat(abr-testing): Protocol simulator, utilizes opentrons CLI to simu…
Browse files Browse the repository at this point in the history
…late and record information regarding a protocol.
  • Loading branch information
AnthonyNASC20 committed Oct 8, 2024
1 parent fc79816 commit 41ba109
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion abr-testing/protocol_simulation/simulation_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def get_labware_name(id: str, object_dict: dict, json_data: dict):
elif 'labwareId' in location:
return get_labware_name(location['labwareId'], json_data['labware'], json_data)

return "Labware not found"
return " Labware not found"


def parse_results_volume(json_data_file: str) -> Tuple[
Expand Down
2 changes: 1 addition & 1 deletion api/src/opentrons/protocol_api/instrument_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ def mix(
location=location,
),
):
self._protocol_core.comment("MIXING")
# self._protocol_core.comment("MIXING")
self.aspirate(volume, location, rate)
while repetitions - 1 > 0:
self.dispense(volume, rate=rate, **dispense_kwargs)
Expand Down

0 comments on commit 41ba109

Please sign in to comment.