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 fd587e1 commit 8c2aa06Copy full SHA for 8c2aa06
client/pyroclient/client.py
@@ -180,9 +180,9 @@ def create_pose(
180
timeout=self.timeout,
181
)
182
183
- def get_current_poses(self, camera_id: int | None = None) -> Response:
184
- """Fetch poses, optionally filtered by camera_id."""
185
- 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
186
return requests.get(
187
urljoin(self._route_prefix, ClientRoute.POSES_CREATE),
188
headers=self.headers,
0 commit comments