Skip to content

Commit

Permalink
chore: fix docs build broken by Sphinx 3.2.0
Browse files Browse the repository at this point in the history
Closes #217.
  • Loading branch information
tseaver committed Aug 10, 2020
1 parent af2c987 commit 120ff41
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions google/cloud/bigquery/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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
Expand Down

0 comments on commit 120ff41

Please sign in to comment.