Closed
Description
I am trying to extract the list of users using the Pager:
print(*TSC.Pager(tableau.users))
I get the following error:
File "metalab_users.py", line 74, in <module> print(*tableau_users) File "C:\Program Files\Python35\lib\site-packages\tableauserverclient\server\pager.py", line 30, in __iter__ yield current_item_list.pop(0) TypeError: pop() takes no arguments (1 given)
When calling projects with the same code, I get no such error:
print(*TSC.Pager(tableau.projects))