Skip to content

Commit

Permalink
Fix missing indefinitive article in error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
plamut committed Nov 8, 2021
1 parent c16fde3 commit e5610d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions google/cloud/bigquery/magics/magics.py
Expand Up @@ -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)
Expand Down

0 comments on commit e5610d6

Please sign in to comment.