Hi I'm having trouble attempting to use the python SDK
I'm trying to access a list of team folders using 'team_team_folder_list'
For example:
dbx = dropbox.Dropbox(access_token)
result = dbx.team_team_folder_list(path="")
Gives the error:
Traceback (most recent call last):
File "dropbox-test.py", line 116, in <module>
result = dbx.team_team_folder_list(path="")
AttributeError: 'Dropbox' object has no attribute 'team_team_folder_list'
I've tried a few variants of the above - and can see the function defined in the SDK - am I supposed to be calling it in a different way?