Skip to content

Commit dad522d

Browse files
authored
chore: fix experimental blob video display in IPython 7.x (#1319)
1 parent f672262 commit dad522d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigframes/operations/blob.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def display_single_url(read_url: str, content_type: str):
216216
response = requests.get(read_url)
217217
ipy_display.display(ipy_display.Audio(response.content))
218218
elif content_type.startswith("video"):
219-
ipy_display.display(ipy_display.Video(url=read_url))
219+
ipy_display.display(ipy_display.Video(read_url))
220220
else: # display as raw data
221221
response = requests.get(read_url)
222222
ipy_display.display(response.content)

0 commit comments

Comments
 (0)