Skip to content

Commit

Permalink
updates another inclusion of value in properties to use repr version
Browse files Browse the repository at this point in the history
  • Loading branch information
chalmerlowe committed Sep 11, 2024
1 parent 1411460 commit 20ee950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google/cloud/bigquery/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ def external_catalog_dataset_options(self, value):
"ExternalCatalogDatasetOptions object or None. "
f"Got {repr(value)}."
)
self._properties["externalCatalogDatasetOptions"] = value
self._properties["externalCatalogDatasetOptions"] = value.to_api_repr()

table = _get_table_reference

Expand Down

0 comments on commit 20ee950

Please sign in to comment.