Skip to content
This repository was archived by the owner on Jan 17, 2024. It is now read-only.

Commit bd6d9ec

Browse files
clean up
1 parent da4785f commit bd6d9ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

UPGRADING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Some methods have additional keyword only parameters. The available parameters d
8383
Both of these calls are valid:
8484

8585
```py
86-
response = client.report_phishing(
86+
response = client.create_dashboard(
8787
request={
8888
"parent": parent,
8989
"dashboard": dashboard,
@@ -92,7 +92,7 @@ response = client.report_phishing(
9292
```
9393

9494
```py
95-
response = client.report_phishing(
95+
response = client.create_dashboard(
9696
parent=parent,
9797
dashboard=dashboard,
9898
)
@@ -101,7 +101,7 @@ response = client.report_phishing(
101101
This call is invalid because it mixes `request` with a keyword argument `dashboard`. Executing this code will result in an error.
102102

103103
```py
104-
response = client.report_phishing(
104+
response = client.create_dashboard(
105105
request={
106106
"parent": parent,
107107
},

0 commit comments

Comments
 (0)