We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 948faf7 commit ace5307Copy full SHA for ace5307
bigframes/dataframe.py
@@ -783,9 +783,8 @@ def __repr__(self) -> str:
783
opts = bigframes.options.display
784
max_results = opts.max_rows
785
786
- # anywdiget mode uses the same display logic as the "deferred" mode
787
- # for faster execution
788
- if opts.repr_mode in ("deferred", "anywidget"):
+ # Only deferred mode shows dry run
+ if opts.repr_mode in ("deferred"):
789
return formatter.repr_query_job(self._compute_dry_run())
790
791
# TODO(swast): pass max_columns and get the true column count back. Maybe
0 commit comments