Skip to content

Commit 3f6f753

Browse files
chore: sort imports (#761)
* chore: sort imports * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent c30a69e commit 3f6f753

File tree

9 files changed

+3
-12
lines changed

9 files changed

+3
-12
lines changed

bigquery_storage/quickstart/noxfile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323
import nox
2424

25-
2625
# WARNING - WARNING - WARNING - WARNING - WARNING
2726
# WARNING - WARNING - WARNING - WARNING - WARNING
2827
# DO NOT EDIT THIS FILE EVER!

bigquery_storage/quickstart/quickstart.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717

1818
def main(project_id="your-project-id", snapshot_millis=0):
1919
# [START bigquerystorage_quickstart]
20-
from google.cloud.bigquery_storage import BigQueryReadClient
21-
from google.cloud.bigquery_storage import types
20+
from google.cloud.bigquery_storage import BigQueryReadClient, types
2221

2322
# TODO(developer): Set the project_id variable.
2423
# project_id = 'your-project-id'

bigquery_storage/snippets/append_rows_pending.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919
"""
2020

2121
from google.cloud import bigquery_storage_v1
22-
from google.cloud.bigquery_storage_v1 import types
23-
from google.cloud.bigquery_storage_v1 import writer
22+
from google.cloud.bigquery_storage_v1 import types, writer
2423
from google.protobuf import descriptor_pb2
2524

2625
# If you update the customer_record.proto protocol buffer definition, run:

bigquery_storage/snippets/append_rows_pending_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
from . import append_rows_pending
2222

23-
2423
DIR = pathlib.Path(__file__).parent
2524

2625

bigquery_storage/snippets/append_rows_proto2.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121
import decimal
2222

2323
from google.cloud import bigquery_storage_v1
24-
from google.cloud.bigquery_storage_v1 import types
25-
from google.cloud.bigquery_storage_v1 import writer
24+
from google.cloud.bigquery_storage_v1 import types, writer
2625
from google.protobuf import descriptor_pb2
2726

2827
# If you make updates to the sample_data.proto protocol buffers definition,

bigquery_storage/snippets/append_rows_proto2_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323
from . import append_rows_proto2
2424

25-
2625
DIR = pathlib.Path(__file__).parent
2726

2827

bigquery_storage/snippets/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
import pytest
1717
import test_utils.prefixer
1818

19-
2019
prefixer = test_utils.prefixer.Prefixer("python-bigquery-storage", "samples/snippets")
2120

2221

bigquery_storage/snippets/noxfile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323
import nox
2424

25-
2625
# WARNING - WARNING - WARNING - WARNING - WARNING
2726
# WARNING - WARNING - WARNING - WARNING - WARNING
2827
# DO NOT EDIT THIS FILE EVER!

bigquery_storage/to_dataframe/noxfile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323
import nox
2424

25-
2625
# WARNING - WARNING - WARNING - WARNING - WARNING
2726
# WARNING - WARNING - WARNING - WARNING - WARNING
2827
# DO NOT EDIT THIS FILE EVER!

0 commit comments

Comments
 (0)