From e5610d6135e3ebad9e0217f9cdf2aee78541e0e9 Mon Sep 17 00:00:00 2001 From: Peter Lamut Date: Mon, 8 Nov 2021 21:07:38 +0100 Subject: [PATCH] Fix missing indefinitive article in error msg --- google/cloud/bigquery/magics/magics.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/google/cloud/bigquery/magics/magics.py b/google/cloud/bigquery/magics/magics.py index 67dfa6044..b0a14919e 100644 --- a/google/cloud/bigquery/magics/magics.py +++ b/google/cloud/bigquery/magics/magics.py @@ -611,8 +611,8 @@ def _cell_magic(line, query): else: if not isinstance(query, (str, bytes)): raise TypeError( - f"Query variable {query_var_name} must be string " - "or bytes-like value." + f"Query variable {query_var_name} must be a string " + "or a bytes-like value." ) # Any query that does not contain whitespace (aside from leading and trailing whitespace)