Skip to content

Fix typos in upload method docstrings #388

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 17, 2023
Merged
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
4 changes: 2 additions & 2 deletions src/viam/app/data_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ async def binary_data_capture_upload(
app.viam.com. Binary data can be found under the "Files" tab in Data on app.viam.com.

Args:
binary_data (bytes): The data to be uploaded, respresented in bytes.
binary_data (bytes): The data to be uploaded, represented in bytes.
part_id (str): Part ID of the component used to capture the data.
component_type (str): Type of the component used to capture the data (e.g., "movement_sensor").
component_name (str): Name of the component used to capture the data.
Expand Down Expand Up @@ -532,7 +532,7 @@ async def file_upload(
file_extension (Optional[str]): Optional file extension. The empty string "" will be assigned as the file extension if one isn't
provided.
tags (Optional[List[str]]): Optional list of tags to allow for tag-based filtering when retrieving data.
data: (Optional[bytes]): Optional bytes representing file data to upload.
data (Optional[bytes]): Optional bytes representing file data to upload.

Raises:
GRPCError: If an invalid part ID is passed.
Expand Down