8000 Update api-ref.md (fix typo in code snippet) · d45/server-client-python@93ae47c · GitHub
[go: up one dir, main page]

Skip to content

Commit 93ae47c

Browse files
authored
Update api-ref.md (fix typo in code snippet)
fixing doc issue: Workbook API Reference naming convention is off in Example for get() tableau#193 tableau#193
1 parent 47332fc commit 93ae47c

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
@@ -2574,7 +2574,8 @@ tableau_auth = TSC.TableauAuth('username', 'password', site_id='site')
25742574
server = TSC.Server('http://servername')
25752575

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

25802581

0 commit comments

Comments
 (0)
0