Skip to content

Commit 0cd9889

Browse files
style
1 parent 35eb7fa commit 0cd9889

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
@@ -176,9 +176,9 @@ def create_pose(
176176
timeout=self.timeout,
177177
)
178178

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
179+
def get_current_poses(self) -> Response:
180+
"""Fetch poses for the authenticated camera."""
181+
params: Dict[str, int] | None = None
182182
return requests.get(
183183
urljoin(self._route_prefix, ClientRoute.POSES_CREATE),
184184
headers=self.headers,

0 commit comments

Comments
 (0)