File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -27,19 +27,20 @@ Authentication / Configuration
27
27
28
28
- Override the credentials inferred from the environment by passing explicit
29
29
``credentials `` to one of the alternative ``classmethod `` factories,
30
- ` :meth:gcloud.bigquery.client.Client.from_service_account_json `:
30
+ :meth: ` gcloud.bigquery.client.Client.from_service_account_json `:
31
31
32
32
.. doctest ::
33
33
34
34
>>> from gcloud import bigquery
35
35
>>> client = bigquery.Client.from_service_account_json(' /path/to/creds.json' )
36
36
37
- or ` :meth:gcloud.bigquery.client.Client.from_service_account_p12 `:
37
+ or :meth: ` gcloud.bigquery.client.Client.from_service_account_p12 `:
38
38
39
39
.. doctest ::
40
40
41
41
>>> from gcloud import bigquery
42
- >>> client = bigquery.Client.from_service_account_p12(' /path/to/creds.p12' , ' jrandom@example.com' )
42
+ >>> client = bigquery.Client.from_service_account_p12(
43
+ ... ' /path/to/creds.p12' , ' jrandom@example.com' )
43
44
44
45
45
46
Projects
You can’t perform that action at this time.
0 commit comments