Skip to content

Commit

Permalink
Quick fix example ipynb typos (#407)
Browse files Browse the repository at this point in the history
  • Loading branch information
andf-viam authored Aug 24, 2023
1 parent 0fc9542 commit a80ae6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/examples/example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1188,7 +1188,7 @@
"outputs": [],
"source": [
"time_requested_1 = datetime(2023, 6, 5, 11)\n",
"time_recieved_1 = datetime(2023, 6, 5, 11, 0, 3)\n",
"time_received_1 = datetime(2023, 6, 5, 11, 0, 3)\n",
"\n",
"await data_client.tabular_data_capture_upload(\n",
" part_id=\"<ID>\", # Unique ID of the relevant robot part.\n",
Expand All @@ -1197,7 +1197,7 @@
" method_name='IsPowered',\n",
" method_parameters=None,\n",
" tags=[\"tag_1\", \"tag_2\"],\n",
" data_request_times=[(time_requested_1, time_recieved_1)],\n",
" data_request_times=[(time_requested_1, time_received_1)],\n",
" tabular_data=[{'PowerPCT': 0, 'IsPowered': False}]\n",
")"
]
Expand Down Expand Up @@ -1288,7 +1288,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Certain types returned by `AppClient` methods (namely, `RobotPart`, `LogEntry`, `Fragment`, and `RobotPartHistoryEntry` objects) are wrapped in mirror classes that convert proto data into a friendlier, more readable format. Each of these mirrors still allows access to the intial proto type returned by the response as a property."
"Certain types returned by `AppClient` methods (namely, `RobotPart`, `LogEntry`, `Fragment`, and `RobotPartHistoryEntry` objects) are wrapped in mirror classes that convert proto data into a friendlier, more readable format. Each of these mirrors still allows access to the initial proto type returned by the response as a property."
]
},
{
Expand Down

0 comments on commit a80ae6c

Please sign in to comment.