From f4704d544dc5a50e6958b569d81261d3ffc09245 Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Mon, 20 May 2024 18:11:54 -0400 Subject: [PATCH] Typo. --- .../maintenance_runs/maintenance_run_data_manager.py | 2 +- robot-server/robot_server/runs/run_data_manager.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/robot-server/robot_server/maintenance_runs/maintenance_run_data_manager.py b/robot-server/robot_server/maintenance_runs/maintenance_run_data_manager.py index d9bd2b11e92..92b7eeb5cd1 100644 --- a/robot-server/robot_server/maintenance_runs/maintenance_run_data_manager.py +++ b/robot-server/robot_server/maintenance_runs/maintenance_run_data_manager.py @@ -197,7 +197,7 @@ def get_current_command(self, run_id: str) -> Optional[CommandPointer]: else: # todo(mm, 2024-05-20): # For historical runs to behave consistently with the current run, - # this should the most recently completed command, not `None`. + # this should be the most recently completed command, not `None`. return None def get_recovery_target_command(self, run_id: str) -> Optional[CommandPointer]: diff --git a/robot-server/robot_server/runs/run_data_manager.py b/robot-server/robot_server/runs/run_data_manager.py index 1635f64ed33..5f69ba5a960 100644 --- a/robot-server/robot_server/runs/run_data_manager.py +++ b/robot-server/robot_server/runs/run_data_manager.py @@ -387,7 +387,7 @@ def get_current_command(self, run_id: str) -> Optional[CommandPointer]: else: # todo(mm, 2024-05-20): # For historical runs to behave consistently with the current run, - # this should the most recently completed command, not `None`. + # this should be the most recently completed command, not `None`. return None def get_recovery_target_command(self, run_id: str) -> Optional[CommandPointer]: