Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 1507c89

Browse files
committed
chore: syntax error, oops
1 parent b636bb0 commit 1507c89

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

bigframes/formatting_helpers.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727
import humanize
2828

2929
if TYPE_CHECKING:
30-
from IPython import display
31-
3230
import bigframes.core.events
3331

3432
GenericJob = Union[
@@ -179,7 +177,7 @@ def progress_callback(
179177
display_html = render_bqquery_finished_event_html(event)
180178

181179
elif isinstance(event, bigframes.core.events.SessionClosed):
182-
display_html = f"Session {event.session_id} closed."),
180+
display_html = f"Session {event.session_id} closed."
183181

184182
if display_html:
185183
if current_display_id:
@@ -192,7 +190,7 @@ def progress_callback(
192190
display.HTML(display_html),
193191
display_id=current_display_id,
194192
)
195-
193+
196194
elif progress_bar == "terminal":
197195
message = None
198196

0 commit comments

Comments
 (0)