We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46ced00 commit 27dcf5aCopy full SHA for 27dcf5a
bigquery/google/cloud/bigquery/_helpers.py
@@ -318,7 +318,7 @@ def _validate(self, value):
318
:raises: ValueError if value is not allowed.
319
"""
320
if value not in self.ALLOWED:
321
- raise ValueError('Pass one of: %s' ', '.join(self.ALLOWED))
+ raise ValueError('Pass one of: %s' % ', '.join(self.ALLOWED))
322
323
324
class UDFResource(object):
0 commit comments