Skip to content

Commit 96d79ba

Browse files
committed
Print out the list of files
The prompt "List the files available following at this prefix on AWS S3 storage" left me expecting the list of files to be output. If we intend to not output it we could instead say "Create a list of the files..."?
1 parent 0a9c63f commit 96d79ba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/04-data-in-the-cloud/index.ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,8 @@
232232
"path = \"data/v2.1/avhrr/202408/\"\n",
233233
"store = S3Store(bucket=bucket, region=\"us-east-1\", skip_signature=True)\n",
234234
"list_stream = obs.list_with_delimiter(store, prefix=path)\n",
235-
"paths = [x[\"path\"] for x in list_stream[\"objects\"]]"
235+
"paths = [x[\"path\"] for x in list_stream[\"objects\"]]\n",
236+
"paths"
236237
]
237238
},
238239
{

0 commit comments

Comments
 (0)