Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions docs/contents/specification/connector.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.


11 changes: 0 additions & 11 deletions inorbit_connector/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down Expand Up @@ -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.

Expand Down
Loading