diff --git a/bigframes/operations/blob.py b/bigframes/operations/blob.py index a4de2f80c7..205a9fcf5c 100644 --- a/bigframes/operations/blob.py +++ b/bigframes/operations/blob.py @@ -216,7 +216,7 @@ def display_single_url(read_url: str, content_type: str): response = requests.get(read_url) ipy_display.display(ipy_display.Audio(response.content)) elif content_type.startswith("video"): - ipy_display.display(ipy_display.Video(url=read_url)) + ipy_display.display(ipy_display.Video(read_url)) else: # display as raw data response = requests.get(read_url) ipy_display.display(response.content)