From a2f1898800de085bdd309892471a9c14ae5f039e Mon Sep 17 00:00:00 2001 From: William Chargin Date: Thu, 5 Sep 2019 15:21:11 -0700 Subject: [PATCH] Fix Spanner `BOOL` example after upstream typo fix [(#2356)](https://github.com/GoogleCloudPlatform/python-docs-samples/issues/2356) Summary: This code used to be correct, when the Spanner Python API had a typo in the parameter name, but that typo was fixed in an upstream pull request: Test Plan: Running `git grep BOOE` now returns no results. wchargin-branch: bool-not-booe --- samples/samples/snippets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/samples/snippets.py b/samples/samples/snippets.py index 60f296ef63..d2cbf2f9bf 100644 --- a/samples/samples/snippets.py +++ b/samples/samples/snippets.py @@ -1207,7 +1207,7 @@ def query_data_with_bool(instance_id, database_id): 'outdoor_venue': exampleBool } param_type = { - 'outdoor_venue': param_types.BOOE + 'outdoor_venue': param_types.BOOL } with database.snapshot() as snapshot: