Skip to content

Commit 86ea1cf

Browse files
plamuttseaver
andauthored
Fix missing indefinitive article in error msg
Co-authored-by: Tres Seaver <tseaver@palladion.com>
1 parent c16fde3 commit 86ea1cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

google/cloud/bigquery/magics/magics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -611,8 +611,8 @@ def _cell_magic(line, query):
611611
else:
612612
if not isinstance(query, (str, bytes)):
613613
raise TypeError(
614-
f"Query variable {query_var_name} must be string "
615-
"or bytes-like value."
614+
f"Query variable {query_var_name} must be a string "
615+
"or a bytes-like value."
616616
)
617617

618618
# Any query that does not contain whitespace (aside from leading and trailing whitespace)

0 commit comments

Comments
 (0)