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

Commit afa099b

Browse files
committed
fix: remove initial 'Starting.' message from progress bars
1 parent 15e0382 commit afa099b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bigframes/formatting_helpers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def progress_callback(
169169
):
170170
previous_display_html = ""
171171
current_display_id = str(random.random())
172-
current_display = display.HTML("Starting.")
172+
current_display = display.HTML("")
173173
display.display(
174174
current_display,
175175
display_id=current_display_id,
@@ -213,7 +213,7 @@ def progress_callback(
213213
)
214214
elif progress_bar == "terminal":
215215
if isinstance(event, bigframes.core.events.ExecutionStarted):
216-
print("Starting execution.")
216+
pass
217217
elif isinstance(event, bigframes.core.events.BigQuerySentEvent):
218218
message = render_bqquery_sent_event_plaintext(event)
219219
print(message)

0 commit comments

Comments
 (0)