Skip to content

Commit a390803

Browse files
committed
fix lint
1 parent 833e85a commit a390803

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • packages/bigframes/tests/system/small/bigquery

packages/bigframes/tests/system/small/bigquery/test_ai.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,9 @@ def test_ai_classify_with_examples(session):
339339
def test_ai_classify_output_mode(session, bq_connection):
340340
s = bpd.Series(["cat", "orchid"], session=session)
341341

342-
result = bbq.ai.classify(s, ["animal", "plant"], output_mode="multi", examples=[("dog", ["animal"])])
342+
result = bbq.ai.classify(
343+
s, ["animal", "plant"], output_mode="multi", examples=[("dog", ["animal"])]
344+
)
343345

344346
assert len(result) == len(s)
345347
assert result.dtype == dtypes.list_type(dtypes.STRING_DTYPE)

0 commit comments

Comments
 (0)