Skip to content
This repository has been archived by the owner on Dec 31, 2023. It is now read-only.

fix: update_column_spec typo in TablesClient docstring #18

Merged
merged 4 commits into from Sep 9, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion google/cloud/automl_v1beta1/tables/tables_client.py
Expand Up @@ -1205,7 +1205,7 @@ def update_column_spec(
... credentials=service_account.Credentials.from_service_account_file('~/.gcp/account.json'),
... project='my-project', region='us-central1')
...
>>> client.update_column_specs(dataset_display_name='my_dataset',
>>> client.update_column_spec(dataset_display_name='my_dataset',
... column_spec_display_name='Outcome', type_code='CATEGORY')
...

Expand Down