You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with the ID of the folder. Currently only one lock can exist per folder. Folder locks define access restrictions placed by folder owners to prevent specific folders from being moved or deleted.
478
478
479
479
```python
480
-
locks = client.folders(folder_id).get_locks()
480
+
locks = client.folder(folder_id).get_locks()
481
481
lock = locks.next()
482
482
print(f'A lock on a folder with ID {lock.folder.id}')
0 commit comments