diff --git a/src/viam/app/app_client.py b/src/viam/app/app_client.py index a1286587c..12675c2e5 100644 --- a/src/viam/app/app_client.py +++ b/src/viam/app/app_client.py @@ -1286,7 +1286,7 @@ async def get_robot_part(self, robot_part_id: str, dest: Optional[str] = None, i # Get the part's address address = my_robot_part.fqdn # Check if machine is live (last access time less than 10 sec ago) - if (time.time() - my_robot_part.last_access.timestamp()) <= 10000: + if (time.time() - my_robot_part.last_access.timestamp()) <= 10: print("Machine is live.") Args: