Skip to content

Commit 12d5185

Browse files
committed
chore: suppress mypy error
1 parent 125473e commit 12d5185

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tableauserverclient/server/endpoint/users_endpoint.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -431,8 +431,8 @@ def populate_workbooks(
431431
error = "User item missing ID."
432432
raise MissingRequiredFieldError(error)
433433

434-
def wb_pager() -> Pager[WorkbookItem]:
435-
def func(req_options: Optional[RequestOptions]) -> tuple[list[WorkbookItem], PaginationItem]:
434+
def wb_pager():
435+
def func(req_options):
436436
return self._get_wbs_for_user(user_item, req_options, owned_only=owned_only)
437437

438438
return Pager(func, req_options)

0 commit comments

Comments
 (0)