We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3878fc0 commit fe3b6ceCopy full SHA for fe3b6ce
tableauserverclient/server/endpoint/users_endpoint.py
@@ -431,8 +431,8 @@ def populate_workbooks(
431
error = "User item missing ID."
432
raise MissingRequiredFieldError(error)
433
434
- def wb_pager() -> Pager[WorkbookItem]:
435
- def func(req_options: Optional[RequestOptions]) -> tuple[list[WorkbookItem], PaginationItem]:
+ def wb_pager():
+ def func(req_options):
436
return self._get_wbs_for_user(user_item, req_options, owned_only=owned_only)
437
438
return Pager(func, req_options)
0 commit comments