Skip to content

Commit af8a3e5

Browse files
authored
Merge pull request #113424 from jxu/jxu-patch-1
Fix python typos in how-to-access-data-interactive
2 parents 91c3ec2 + 6485e07 commit af8a3e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/how-to-access-data-interactive.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ subscription = '<subscription_id>'
6161
resource_group = '<resource_group>'
6262
workspace = '<workspace>'
6363
datastore_name = '<datastore>'
64-
path_on_datastore '<path>'
64+
path_on_datastore = '<path>'
6565
6666
# long-form Datastore uri format:
67-
uri = f'azureml://subscriptions/{subscription}/resourcegroups/{resource_group}/workspaces/{workspace}/datastores/{datastore_name}/paths/{path_on_datastore}'.
67+
uri = f'azureml://subscriptions/{subscription}/resourcegroups/{resource_group}/workspaces/{workspace}/datastores/{datastore_name}/paths/{path_on_datastore}'
6868
```
6969
7070
These Datastore URIs are a known implementation of [Filesystem spec](https://filesystem-spec.readthedocs.io/en/latest/index.html) (`fsspec`): A unified pythonic interface to local, remote and embedded file systems and bytes storage.

0 commit comments

Comments
 (0)