@@ -368,7 +368,8 @@ def view_query(self):
368368 def list_partitions (self , client = None ):
369369 """List the partitions in a table.
370370
371- :type client: :class:`google.cloud.bigquery.client.Client` or ``NoneType``
371+ :type client: :class:`~google.cloud.bigquery.client.Client` or
372+ ``NoneType``
372373 :param client: the client to use. If not passed, falls back to the
373374 ``client`` stored on the current dataset.
374375
@@ -406,7 +407,8 @@ def from_api_repr(cls, resource, dataset):
406407 def _require_client (self , client ):
407408 """Check client or verify over-ride.
408409
409- :type client: :class:`google.cloud.bigquery.client.Client` or ``NoneType``
410+ :type client: :class:`~google.cloud.bigquery.client.Client` or
411+ ``NoneType``
410412 :param client: the client to use. If not passed, falls back to the
411413 ``client`` stored on the current dataset.
412414
@@ -477,7 +479,8 @@ def create(self, client=None):
477479 See:
478480 https://cloud.google.com/bigquery/docs/reference/v2/tables/insert
479481
480- :type client: :class:`google.cloud.bigquery.client.Client` or ``NoneType``
482+ :type client: :class:`~google.cloud.bigquery.client.Client` or
483+ ``NoneType``
481484 :param client: the client to use. If not passed, falls back to the
482485 ``client`` stored on the current dataset.
483486 """
@@ -494,7 +497,8 @@ def exists(self, client=None):
494497 See
495498 https://cloud.google.com/bigquery/docs/reference/v2/tables/get
496499
497- :type client: :class:`google.cloud.bigquery.client.Client` or ``NoneType``
500+ :type client: :class:`~google.cloud.bigquery.client.Client` or
501+ ``NoneType``
498502 :param client: the client to use. If not passed, falls back to the
499503 ``client`` stored on the current dataset.
500504
@@ -517,7 +521,8 @@ def reload(self, client=None):
517521 See
518522 https://cloud.google.com/bigquery/docs/reference/v2/tables/get
519523
520- :type client: :class:`google.cloud.bigquery.client.Client` or ``NoneType``
524+ :type client: :class:`~google.cloud.bigquery.client.Client` or
525+ ``NoneType``
521526 :param client: the client to use. If not passed, falls back to the
522527 ``client`` stored on the current dataset.
523528 """
@@ -540,7 +545,8 @@ def patch(self,
540545 See
541546 https://cloud.google.com/bigquery/docs/reference/v2/tables/patch
542547
543- :type client: :class:`google.cloud.bigquery.client.Client` or ``NoneType``
548+ :type client: :class:`~google.cloud.bigquery.client.Client` or
549+ ``NoneType``
544550 :param client: the client to use. If not passed, falls back to the
545551 ``client`` stored on the current dataset.
546552
@@ -606,7 +612,8 @@ def update(self, client=None):
606612 See
607613 https://cloud.google.com/bigquery/docs/reference/v2/tables/update
608614
609- :type client: :class:`google.cloud.bigquery.client.Client` or ``NoneType``
615+ :type client: :class:`~google.cloud.bigquery.client.Client` or
616+ ``NoneType``
610617 :param client: the client to use. If not passed, falls back to the
611618 ``client`` stored on the current dataset.
612619 """
@@ -621,7 +628,8 @@ def delete(self, client=None):
621628 See:
622629 https://cloud.google.com/bigquery/docs/reference/v2/tables/delete
623630
624- :type client: :class:`google.cloud.bigquery.client.Client` or ``NoneType``
631+ :type client: :class:`~google.cloud.bigquery.client.Client` or
632+ ``NoneType``
625633 :param client: the client to use. If not passed, falls back to the
626634 ``client`` stored on the current dataset.
627635 """
@@ -648,7 +656,8 @@ def fetch_data(self, max_results=None, page_token=None, client=None):
648656 :type page_token: str or ``NoneType``
649657 :param page_token: token representing a cursor into the table's rows.
650658
651- :type client: :class:`google.cloud.bigquery.client.Client` or ``NoneType``
659+ :type client: :class:`~google.cloud.bigquery.client.Client` or
660+ ``NoneType``
652661 :param client: the client to use. If not passed, falls back to the
653662 ``client`` stored on the current dataset.
654663
@@ -714,7 +723,8 @@ def insert_data(self,
714723 schema of the template table. See:
715724 https://cloud.google.com/bigquery/streaming-data-into-bigquery#template-tables
716725
717- :type client: :class:`google.cloud.bigquery.client.Client` or ``NoneType``
726+ :type client: :class:`~google.cloud.bigquery.client.Client` or
727+ ``NoneType``
718728 :param client: the client to use. If not passed, falls back to the
719729 ``client`` stored on the current dataset.
720730
@@ -851,7 +861,8 @@ def upload_from_file(self,
851861 :param write_disposition: job configuration option; see
852862 :meth:`google.cloud.bigquery.job.LoadJob`.
853863
854- :type client: :class:`google.cloud.storage.client.Client` or ``NoneType``
864+ :type client: :class:`~google.cloud.storage.client.Client` or
865+ ``NoneType``
855866 :param client: Optional. The client to use. If not passed, falls back
856867 to the ``client`` stored on the current dataset.
857868
0 commit comments