This PR changes the saving and loading of CredStore from JSON to Pickle. There seems to be serialization issues with the original approach for storing and loading the JSON. Therefore, Pickle is used instead to read and write the cred store, which removes these issues and also keeps the code simple.
Overview
This PR changes the saving and loading of
CredStore
from JSON to Pickle. There seems to be serialization issues with the original approach for storing and loading the JSON. Therefore, Pickle is used instead to read and write the cred store, which removes these issues and also keeps the code simple.