Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit e5610d6

Browse files
committed
Fix missing indefinitive article in error msg
1 parent c16fde3 commit e5610d6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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)