I tried the following; collection.unlock() and collection.is_locked() both return True. I must be doing something wrong, but don't know enough about secretstorage to identify what my error is. Please help!
$ python3
Python 3.8.10 (default, Jun 2 2021, 10:49:15)
[GCC 9.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import secretstorage
>>> collection = secretstorage.get_default_collection(secretstorage.dbus_init())
>>> collection.is_locked()
True
>>> collection.unlock()
True
>>> collection.is_locked()
True
>>>
pip list says SecretStorage 3.3.1