Skip to content

Commit eb258ec

Browse files
authored
BigQuery: fix snippets lint issue. (googleapis#5766)
Introduced in googleapis#5760.
1 parent 00359e5 commit eb258ec

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/bigquery/snippets.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1983,7 +1983,7 @@ def test_extract_table(client, to_delete):
19831983

19841984
bucket_name = 'extract_shakespeare_{}'.format(_millis())
19851985
storage_client = storage.Client()
1986-
bucket = retry_429(storage_client.create_bucket)(bucket_name) # API request
1986+
bucket = retry_429(storage_client.create_bucket)(bucket_name)
19871987
to_delete.append(bucket)
19881988

19891989
# [START bigquery_extract_table]
@@ -2020,7 +2020,7 @@ def test_extract_table_json(client, to_delete):
20202020

20212021
bucket_name = 'extract_shakespeare_json_{}'.format(_millis())
20222022
storage_client = storage.Client()
2023-
bucket = retry_429(storage_client.create_bucket)(bucket_name) # API request
2023+
bucket = retry_429(storage_client.create_bucket)(bucket_name)
20242024
to_delete.append(bucket)
20252025

20262026
# [START bigquery_extract_table_json]
@@ -2055,7 +2055,7 @@ def test_extract_table_compressed(client, to_delete):
20552055

20562056
bucket_name = 'extract_shakespeare_compress_{}'.format(_millis())
20572057
storage_client = storage.Client()
2058-
bucket = retry_429(storage_client.create_bucket)(bucket_name) # API request
2058+
bucket = retry_429(storage_client.create_bucket)(bucket_name)
20592059
to_delete.append(bucket)
20602060

20612061
# [START bigquery_extract_table_compressed]

0 commit comments

Comments
 (0)