Skip to content

Commit 09acc1d

Browse files
linted
1 parent 9ace68b commit 09acc1d

File tree

1 file changed

+7
-2
lines changed
  • packages/bigframes/bigframes/session

1 file changed

+7
-2
lines changed

packages/bigframes/bigframes/session/loader.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@
5252
import pandas
5353
import pyarrow as pa
5454
from google.cloud import bigquery_storage_v1
55-
from google.cloud.bigquery_storage_v1 import types as bq_storage_types, writer as bq_storage_writer
55+
from google.cloud.bigquery_storage_v1 import (
56+
types as bq_storage_types,
57+
writer as bq_storage_writer,
58+
)
5659

5760
import bigframes._tools
5861
import bigframes._tools.strings
@@ -520,7 +523,9 @@ def write_data(
520523
)
521524
serialized_schema = schema.serialize().to_pybytes()
522525

523-
def stream_worker(work: Iterator[pa.RecordBatch], max_outstanding: int = 5) -> str:
526+
def stream_worker(
527+
work: Iterator[pa.RecordBatch], max_outstanding: int = 5
528+
) -> str:
524529
requested_stream = bq_storage_types.WriteStream(
525530
type_=bq_storage_types.WriteStream.Type.PENDING
526531
)

0 commit comments

Comments
 (0)