Skip to content

Commit cb355a7

Browse files
authored
chore: add bpd.options.display.progress_bar = None to a doctest that was missing one (#1155)
1 parent abcb059 commit cb355a7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bigframes/ml/compose.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ class SQLScalarColumnTransformer:
6868
6969
>>> from bigframes.ml.compose import ColumnTransformer, SQLScalarColumnTransformer
7070
>>> import bigframes.pandas as bpd
71-
<BLANKLINE>
71+
>>> bpd.options.display.progress_bar = None
72+
7273
>>> df = bpd.DataFrame({'name': ["James", None, "Mary"], 'city': ["New York", "Boston", None]})
7374
>>> col_trans = ColumnTransformer([
7475
... ("strlen",

0 commit comments

Comments
 (0)