We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f672262 commit dad522dCopy full SHA for dad522d
bigframes/operations/blob.py
@@ -216,7 +216,7 @@ def display_single_url(read_url: str, content_type: str):
216
response = requests.get(read_url)
217
ipy_display.display(ipy_display.Audio(response.content))
218
elif content_type.startswith("video"):
219
- ipy_display.display(ipy_display.Video(url=read_url))
+ ipy_display.display(ipy_display.Video(read_url))
220
else: # display as raw data
221
222
ipy_display.display(response.content)
0 commit comments