8000 Fixed jobs.get_by_id(job_id) example (#867) · tableau/server-client-python@7518154 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7518154

Browse files
authored
Fixed jobs.get_by_id(job_id) example (#867)
1 parent d19d894 commit 7518154

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/api-ref.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1315,7 +1315,7 @@ Source files: server/endpoint/jobs_endpoint.py
13151315

13161316

13171317
```py
1318-
jobs.get(job_id)
1318+
jobs.get_by_id(job_id)
13191319

13201320
```
13211321

@@ -1362,7 +1362,7 @@ Returns the `JobItem` requested.
13621362

13631363

13641364
myJobId = '576b616d-341a-4539-b32c-1ed0eb9db548'
1365-
jobinfo = server.jobs.get(myJobID)
1365+
jobinfo = server.jobs.get_by_id(myJobId)
13661366

13671367
print(jobinfo)
13681368

0 commit comments

Comments
 (0)
0