Skip to content

Commit 5965e97

Browse files
committed
chore: revert unnecessary diff in client.py
1 parent 7d76199 commit 5965e97

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

  • packages/google-cloud-bigquery/google/cloud/bigquery

packages/google-cloud-bigquery/google/cloud/bigquery/client.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
from __future__ import absolute_import, annotations, division
1818

19-
from collections import abc as collections_abc
2019
import copy
2120
import datetime
2221
import functools
@@ -28,6 +27,9 @@
2827
import os
2928
import tempfile
3029
import typing
30+
import uuid
31+
import warnings
32+
from collections import abc as collections_abc
3133
from typing import (
3234
IO,
3335
Any,
@@ -41,24 +43,23 @@
4143
Tuple,
4244
Union,
4345
)
44-
import uuid
45-
import warnings
4646

47-
from google.api_core import page_iterator
48-
from google.api_core import retry as retries
4947
import google.api_core.client_options
5048
import google.api_core.exceptions as core_exceptions
51-
from google.api_core.iam import Policy
5249
import google.cloud._helpers # type: ignore
53-
from google.cloud.client import (
54-
ClientWithProject,
55-
) # type: ignore # pytype: disable=import-error
56-
from google.resumable_media.requests import MultipartUpload # type: ignore
57-
from google.resumable_media.requests import ResumableUpload
5850
import requests
59-
6051
from google import resumable_media # type: ignore
52+
from google.api_core import page_iterator
53+
from google.api_core import retry as retries
54+
from google.api_core.iam import Policy
6155
from google.cloud import exceptions # pytype: disable=import-error
56+
from google.cloud.client import (
57+
ClientWithProject, # type: ignore # pytype: disable=import-error
58+
)
59+
from google.resumable_media.requests import (
60+
MultipartUpload, # type: ignore
61+
ResumableUpload,
62+
)
6263

6364
try:
6465
from google.cloud.bigquery_storage_v1.services.big_query_read.client import (
@@ -69,15 +70,14 @@
6970

7071

7172
from google.auth.credentials import Credentials
72-
7373
from google.cloud.bigquery import (
7474
_job_helpers,
7575
_pandas_helpers,
7676
_versions_helpers,
7777
enums,
78+
job,
7879
)
7980
from google.cloud.bigquery import exceptions as bq_exceptions
80-
from google.cloud.bigquery import job
8181
from google.cloud.bigquery._helpers import (
8282
_DEFAULT_HOST,
8383
_DEFAULT_HOST_TEMPLATE,

0 commit comments

Comments
 (0)