8000 Update api-ref.md (fix typo in code snippet) (#196) · ajbosco/server-client-python@9ac90e0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9ac90e0

Browse files
d45t8y8
authored andcommitted
Update api-ref.md (fix typo in code snippet) (tableau#196)
fixing doc issue: Workbook API Reference naming convention is off in Example for get() tableau#193 tableau#193
1 parent 682b255 commit 9ac90e0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/docs/api-ref.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2575,7 +2575,8 @@ tableau_auth = TSC.TableauAuth('username', 'password', site_id='site')
25752575
server = TSC.Server('http://servername')
25762576

25772577
with server.auth.sign_in(tableau_auth):
2578-
all_workbook_items, pagination_item = server.workbooks.get()
2578+
all_workbooks, pagination_item = server.workbooks.get()
2579+
# print names of first 100 workbooks
25792580
print([workbook.name for workbook in all_workbooks])
25802581

25812582

0 commit comments

Comments
 (0)
0