File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -815,7 +815,7 @@ def total_rows(self):
815
815
https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs/query#body.QueryResponse.FIELDS.total_rows
816
816
817
817
Returns:
818
- Optional[int} : Count generated on the server (None until set by the server).
818
+ Optional[int] : Count generated on the server (None until set by the server).
819
819
"""
820
820
total_rows = self ._properties .get ("totalRows" )
821
821
if total_rows is not None :
@@ -858,7 +858,7 @@ def rows(self):
858
858
859
859
Returns:
860
860
Optional[List[google.cloud.bigquery.table.Row]]:
861
- Fields describing the schema (None until set by the server) .
861
+ Rows containing the results of the query .
862
862
"""
863
863
return _rows_from_json (self ._properties .get ("rows" , ()), self .schema )
864
864
You can’t perform that action at this time.
0 commit comments