diff --git a/api/docs/ot1/api.html b/api/docs/ot1/api.html index 4ffc84e4db8..dacc12850a2 100644 --- a/api/docs/ot1/api.html +++ b/api/docs/ot1/api.html @@ -446,7 +446,7 @@ data-gtm-label="start-guide" data-gtm-action="click" >OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • None ) return if message.message_id == MessageId.error_message: - log.error(f"recieved an error {str(message)}") + log.error(f"received an error {str(message)}") return elif message.message_id != MessageId.limit_sw_response: log.warning(f"unexpected message id: 0x{message.message_id:x}") diff --git a/hardware/opentrons_hardware/hardware_control/motor_enable_disable.py b/hardware/opentrons_hardware/hardware_control/motor_enable_disable.py index 32897d16679..c82dfee5f0a 100644 --- a/hardware/opentrons_hardware/hardware_control/motor_enable_disable.py +++ b/hardware/opentrons_hardware/hardware_control/motor_enable_disable.py @@ -38,7 +38,7 @@ async def set_enable_motor( expected_nodes=[node], ) if error != ErrorCode.ok: - log.error(f"recieved error {str(error)} trying to enable {str(node)} ") + log.error(f"received error {str(error)} trying to enable {str(node)} ") async def set_disable_motor( @@ -53,7 +53,7 @@ async def set_disable_motor( expected_nodes=[node], ) if error != ErrorCode.ok: - log.error(f"recieved error {str(error)} trying to disable {str(node)} ") + log.error(f"received error {str(error)} trying to disable {str(node)} ") async def set_enable_tip_motor( @@ -68,7 +68,7 @@ async def set_enable_tip_motor( expected_nodes=[node], ) if error != ErrorCode.ok: - log.error(f"recieved error {str(error)} trying to enable {str(node)} ") + log.error(f"received error {str(error)} trying to enable {str(node)} ") async def set_disable_tip_motor( @@ -83,7 +83,7 @@ async def set_disable_tip_motor( expected_nodes=[node], ) if error != ErrorCode.ok: - log.error(f"recieved error {str(error)} trying to disable {str(node)} ") + log.error(f"received error {str(error)} trying to disable {str(node)} ") async def get_motor_enabled( diff --git a/hardware/opentrons_hardware/hardware_control/tools/detector.py b/hardware/opentrons_hardware/hardware_control/tools/detector.py index fd526406405..fe5f04032ed 100644 --- a/hardware/opentrons_hardware/hardware_control/tools/detector.py +++ b/hardware/opentrons_hardware/hardware_control/tools/detector.py @@ -44,7 +44,7 @@ async def _await_one_result(callback: WaitableCallback) -> ToolDetectionResult: if isinstance(response, message_definitions.PushToolsDetectedNotification): return _handle_detection_result(response) if isinstance(response, message_definitions.ErrorMessage): - log.error(f"Recieved error message {str(response)}") + log.error(f"Received error message {str(response)}") raise CanbusCommunicationError(message="Messenger closed before a tool was found") @@ -78,7 +78,7 @@ async def _await_responses( seen.add(node) break elif isinstance(response, message_definitions.ErrorMessage): - log.error(f"Recieved error message {str(response)}") + log.error(f"Received error message {str(response)}") async def _handle_gripper_info( diff --git a/hardware/opentrons_hardware/sensors/scheduler.py b/hardware/opentrons_hardware/sensors/scheduler.py index edda0da3bb9..627d3da59f7 100644 --- a/hardware/opentrons_hardware/sensors/scheduler.py +++ b/hardware/opentrons_hardware/sensors/scheduler.py @@ -171,7 +171,7 @@ async def send_write( ) if error != ErrorCode.ok: log.error( - f"recieved error {str(error)} trying to write sensor info to {sensor_info.node_id.name}" + f"received error {str(error)} trying to write sensor info to {sensor_info.node_id.name}" ) async def send_read( @@ -384,7 +384,7 @@ def _log_sensor_output(message: MessageDefinition, arb: ArbitrationId) -> None: f"{SensorDataType.build(message.payload.sensor_data, message.payload.sensor).to_float()}" ) if isinstance(message, ErrorMessage): - log.error(f"recieved error message {str(message)}") + log.error(f"received error message {str(message)}") @asynccontextmanager async def bind_sync( @@ -411,7 +411,7 @@ async def bind_sync( ) if error != ErrorCode.ok: log.error( - f"recieved error {str(error)} trying to bind sensor output on {str(target_sensor.node_id)}" + f"received error {str(error)} trying to bind sensor output on {str(target_sensor.node_id)}" ) try: @@ -436,7 +436,7 @@ async def bind_sync( ) if error != ErrorCode.ok: log.error( - f"recieved error {str(error)} trying to write unbind sensor output on {str(target_sensor.node_id)}" + f"received error {str(error)} trying to write unbind sensor output on {str(target_sensor.node_id)}" ) @asynccontextmanager @@ -457,7 +457,7 @@ def _logging_listener( SensorDataType.build(payload.sensor_data, payload.sensor).to_float() ) if isinstance(message, ErrorMessage): - log.error(f"Recieved error message {str(message)}") + log.error(f"Received error message {str(message)}") def _filter(arbitration_id: ArbitrationId) -> bool: return ( @@ -483,7 +483,7 @@ def _filter(arbitration_id: ArbitrationId) -> bool: ) if error != ErrorCode.ok: log.error( - f"recieved error {str(error)} trying to bind sensor output on {str(target_sensor.node_id)}" + f"received error {str(error)} trying to bind sensor output on {str(target_sensor.node_id)}" ) try: @@ -505,7 +505,7 @@ def _filter(arbitration_id: ArbitrationId) -> bool: ) if error != ErrorCode.ok: log.error( - f"recieved error {str(error)} trying to write unbind sensor output on {str(target_sensor.node_id)}" + f"received error {str(error)} trying to write unbind sensor output on {str(target_sensor.node_id)}" ) @asynccontextmanager @@ -562,7 +562,7 @@ def _filter(arbitration_id: ArbitrationId) -> bool: ) if error != ErrorCode.ok: log.error( - f"recieved error {str(error)} trying to bind sensor output on {str(sensor.node_id)}" + f"received error {str(error)} trying to bind sensor output on {str(sensor.node_id)}" ) try: @@ -586,5 +586,5 @@ def _filter(arbitration_id: ArbitrationId) -> bool: ) if error != ErrorCode.ok: log.error( - f"recieved error {str(error)} trying to write unbind sensor output on {str(sensor.node_id)}" + f"received error {str(error)} trying to write unbind sensor output on {str(sensor.node_id)}" )