Skip to content

Commit fcebbb6

Browse files
authored
Update video.ipynb
Use the function's input parameter in the code list_files_from_zip_url(zip_url) - zip_url is not used in the code, but it seems like it should be used instead of the global variable URL
1 parent 049852f commit fcebbb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/en/tutorials/load_data/video.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
" List of files in each of the classes.\n",
189189
" \"\"\"\n",
190190
" files = []\n",
191-
" with rz.RemoteZip(URL) as zip:\n",
191+
" with rz.RemoteZip(zip_url) as zip:\n",
192192
" for zip_info in zip.infolist():\n",
193193
" files.append(zip_info.filename)\n",
194194
" return files"

0 commit comments

Comments
 (0)