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

Commit e7a9478

Browse files
committed
fix: address review comment in formatting_helpers.py
1 parent 726d150 commit e7a9478

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bigframes/formatting_helpers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,8 @@ def progress_callback(
213213
)
214214
elif progress_bar == "terminal":
215215
if isinstance(event, bigframes.core.events.ExecutionStarted):
216-
print("Starting execution.")
216+
# No action needed as "Starting execution." is too noisy for terminal.
217+
pass
217218
elif isinstance(event, bigframes.core.events.BigQuerySentEvent):
218219
message = render_bqquery_sent_event_plaintext(event)
219220
print(message)

0 commit comments

Comments
 (0)