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
2 changes: 1 addition & 1 deletion src/viam/app/app_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ async def location_auth(self, location_id: Optional[str] = None) -> LocationAuth
instantiation.

Returns:
LocationAuth: The `LocationAuth` containing location secrets.
viam.proto.app.LocationAuth: The `LocationAuth` containing location secrets.
"""
request = LocationAuthRequest(location_id=location_id if location_id else self._location_id if self._location_id else "")
response: LocationAuthResponse = await self._app_client.LocationAuth(request, metadata=self._metadata)
Expand Down
2 changes: 1 addition & 1 deletion src/viam/services/navigation/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

class NavigationClient(Navigation, ReconfigurableResourceRPCClientBase):
"""
Connect to the NavigationService, which allows the robot to create a map of its surroundings and find its location in that map.
Connect to the NavigationService, which allows the robot to navigate to specified locations.
"""

client: NavigationServiceStub
Expand Down
2 changes: 1 addition & 1 deletion src/viam/services/navigation/navigation.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Navigation(ServiceBase):
Navigation represents a Navigation service.

This acts as an abstract base class for any drivers representing specific
arm implementations. This cannot be used on its own. If the ``__init__()`` function is
navigation service implementations. This cannot be used on its own. If the ``__init__()`` function is
overridden, it must call the ``super().__init__()`` function.
"""

Expand Down