We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35eb7fa commit 0cd9889Copy full SHA for 0cd9889
client/pyroclient/client.py
@@ -176,9 +176,9 @@ def create_pose(
176
timeout=self.timeout,
177
)
178
179
- def get_current_poses(self, camera_id: int | None = None) -> Response:
180
- """Fetch poses, optionally filtered by camera_id."""
181
- params: Dict[str, int] | None = {"camera_id": camera_id} if camera_id is not None else None
+ def get_current_poses(self) -> Response:
+ """Fetch poses for the authenticated camera."""
+ params: Dict[str, int] | None = None
182
return requests.get(
183
urljoin(self._route_prefix, ClientRoute.POSES_CREATE),
184
headers=self.headers,
0 commit comments