@@ -151,7 +151,7 @@ def modified(self):
151
151
def num_bytes (self ):
152
152
"""The size of the table in bytes.
153
153
154
- :rtype: integer , or ``NoneType``
154
+ :rtype: int , or ``NoneType``
155
155
:returns: the byte count (None until set from the server).
156
156
"""
157
157
num_bytes_as_str = self ._properties .get ('numBytes' )
@@ -162,7 +162,7 @@ def num_bytes(self):
162
162
def num_rows (self ):
163
163
"""The number of rows in the table.
164
164
165
- :rtype: integer , or ``NoneType``
165
+ :rtype: int , or ``NoneType``
166
166
:returns: the row count (None until set from the server).
167
167
"""
168
168
num_rows_as_str = self ._properties .get ('numRows' )
@@ -654,7 +654,7 @@ def fetch_data(self, max_results=None, page_token=None, client=None):
654
654
incomplete. To ensure that the local copy of the schema is
655
655
up-to-date, call the table's ``reload`` method.
656
656
657
- :type max_results: integer or ``NoneType``
657
+ :type max_results: int or ``NoneType``
658
658
:param max_results: maximum number of rows to return.
659
659
660
660
:type page_token: str or ``NoneType``
@@ -836,7 +836,7 @@ def upload_from_file(self,
836
836
:func:`os.fstat`. (If the file handle is not from the
837
837
filesystem this won't be possible.)
838
838
839
- :type num_retries: integer
839
+ :type num_retries: int
840
840
:param num_retries: Number of upload retries. Defaults to 6.
841
841
842
842
:type allow_jagged_rows: bool
@@ -863,15 +863,15 @@ def upload_from_file(self,
863
863
:param ignore_unknown_values: job configuration option; see
864
864
:meth:`google.cloud.bigquery.job.LoadJob`.
865
865
866
- :type max_bad_records: integer
866
+ :type max_bad_records: int
867
867
:param max_bad_records: job configuration option; see
868
868
:meth:`google.cloud.bigquery.job.LoadJob`.
869
869
870
870
:type quote_character: str
871
871
:param quote_character: job configuration option; see
872
872
:meth:`google.cloud.bigquery.job.LoadJob`.
873
873
874
- :type skip_leading_rows: integer
874
+ :type skip_leading_rows: int
875
875
:param skip_leading_rows: job configuration option; see
876
876
:meth:`google.cloud.bigquery.job.LoadJob`.
877
877
0 commit comments