diff --git a/google/cloud/bigquery/query.py b/google/cloud/bigquery/query.py index 0f4c80686..f2ed6337e 100644 --- a/google/cloud/bigquery/query.py +++ b/google/cloud/bigquery/query.py @@ -86,8 +86,8 @@ class ScalarQueryParameter(_AbstractQueryParameter): 'FLOAT64', 'NUMERIC', 'BOOL', 'TIMESTAMP', 'DATETIME', or 'DATE'. - value (Union[str, int, float, decimal.Decimal, bool, - datetime.datetime, datetime.date]): The scalar parameter value. + value (Union[str, int, float, decimal.Decimal, bool, datetime.datetime, datetime.date]): + The scalar parameter value. """ def __init__(self, name, type_, value): @@ -105,9 +105,8 @@ def positional(cls, type_, value): 'FLOAT64', 'NUMERIC', 'BOOL', 'TIMESTAMP', 'DATETIME', or 'DATE'. - value (Union[str, int, float, decimal.Decimal, bool, - datetime.datetime, - datetime.date]): The scalar parameter value. + value (Union[str, int, float, decimal.Decimal, bool, datetime.datetime, datetime.date]): + The scalar parameter value. Returns: google.cloud.bigquery.query.ScalarQueryParameter: Instance without name