File tree 2 files changed +2
-2
lines changed
generated_samples/interactive-tutorials
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ def create_bq_dataset(dataset_name):
154
154
print (f"dataset { full_dataset_id } already exists" )
155
155
except NotFound :
156
156
# Construct a Dataset object to send to the API.
157
- dataset = bq .Dataset (full_dataset_id )
157
+ dataset = bigquery .Dataset (full_dataset_id )
158
158
dataset .location = "US"
159
159
bq .create_dataset (dataset )
160
160
print ("dataset is created" )
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ def create_bq_dataset(dataset_name):
165
165
print (f"dataset { full_dataset_id } already exists" )
166
166
except NotFound :
167
167
# Construct a Dataset object to send to the API.
168
- dataset = bq .Dataset (full_dataset_id )
168
+ dataset = bigquery .Dataset (full_dataset_id )
169
169
dataset .location = "US"
170
170
bq .create_dataset (dataset )
171
171
print ("dataset is created" )
You can’t perform that action at this time.
0 commit comments