diff --git a/docs/contents/specification/connector.md b/docs/contents/specification/connector.md index de67f75..6c9140d 100644 --- a/docs/contents/specification/connector.md +++ b/docs/contents/specification/connector.md @@ -196,8 +196,4 @@ Single-robot convenience for online status. The fleet-level online check delegat Returns the underlying Edge SDK session for the current robot. -### Deprecated: `_robot_session` - -`Connector._robot_session` is deprecated; use `_get_session()` instead. - diff --git a/inorbit_connector/connector.py b/inorbit_connector/connector.py index 5ddce43..7b790c1 100644 --- a/inorbit_connector/connector.py +++ b/inorbit_connector/connector.py @@ -24,12 +24,6 @@ except ImportError: from typing_extensions import override -# Python 3.13+ compatibility for deprecated decorator -try: - from warnings import deprecated -except ImportError: - from typing_extensions import deprecated - # Third Party from inorbit_edge.models import RobotSessionModel from inorbit_edge.robot import ( @@ -967,11 +961,6 @@ def _get_session(self) -> RobotSession: """ return super()._get_robot_session(self.robot_id) - @property - @deprecated("Use self._get_session() instead") - def _robot_session(self) -> RobotSession: - return self._get_session() - def _is_robot_online(self) -> bool: """Check if the robot is online.