Skip to content

Commit 8c2aa06

Browse files
style
1 parent fd587e1 commit 8c2aa06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

client/pyroclient/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,9 @@ def create_pose(
180180
timeout=self.timeout,
181181
)
182182

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
183+
def get_current_poses(self) -> Response:
184+
"""Fetch poses for the authenticated camera."""
185+
params: Dict[str, int] | None = None
186186
return requests.get(
187187
urljoin(self._route_prefix, ClientRoute.POSES_CREATE),
188188
headers=self.headers,

0 commit comments

Comments
 (0)