I have python 3.10 code running from some time, and now, it started getting me errors while importing the libraries, without any modification in the code.
For example, from this line:
from azure.keyvault.secrets import SecretClient
I get this error;
from azure.keyvault.secrets import SecretClient
ImportError: cannot import name 'SecretClient' from partially initialized module 'azure.keyvault.secrets' (most likely due to a circular import) (C:\Users\myself\AppData\Local\Programs\Python\Python310\lib\site-packages\azure\keyvault\secrets\__init__.py)
The library was installed using:
pip install azure-keyvault
Any idea what could be the problem? I tried uninstalling and installing the library again, but I still get the errors...
Thanks Gus