Skip to content

Commit

Permalink
Fix AutoML region tag typos (#1687)
Browse files Browse the repository at this point in the history
* fixes vision delete dataset region tag

* removes extra bracket
  • Loading branch information
alixhami authored and sirtorry committed Sep 6, 2018
1 parent f820f6d commit 35fe662
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion translate/automl/automl_translation_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def import_data(project_id, compute_region, dataset_id, path):

def delete_dataset(project_id, compute_region, dataset_id):
"""Delete a dataset."""
# [START automl_translate_delete_dataset]]
# [START automl_translate_delete_dataset]
# TODO(developer): Uncomment and set the following variables
# project_id = 'PROJECT_ID_HERE'
# compute_region = 'COMPUTE_REGION_HERE'
Expand Down
3 changes: 1 addition & 2 deletions vision/automl/automl_vision_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,7 @@ def delete_dataset(project_id, compute_region, dataset_id):

# synchronous check of operation status.
print("Dataset deleted. {}".format(response.result()))

# [END automl_visionl_delete_dataset]
# [END automl_vision_delete_dataset]


if __name__ == "__main__":
Expand Down

0 comments on commit 35fe662

Please sign in to comment.