Skip to content

Commit 9bdcdac

Browse files
authored
Update how-to-access-data-interactive.md
1 parent 39577f6 commit 9bdcdac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ fs = AzureMachineLearningFileSystem(uri)
164164

165165
# append csv files in folder to a list
166166
dflist = []
167-
for path in fs.ls('/<folder>/*.csv'):
167+
for path in fs.glob('/<folder>/*.csv'):
168168
with fs.open(path) as f:
169169
dflist.append(pd.read_csv(f))
170170

0 commit comments

Comments
 (0)