Pamela Fox
Pamela Fox
Does that error go away if you wait 15 minutes?
And yes, some of this code may come back if I figure out keyvault storage for Entra secrets, but it may be in a different form, so I don't want...
Hm, I wonder if public would be clearer if it was "global"? public may imply logged out users (which Zed has a use case for). AZURE_DEFAULT_DOCUMENT_ACCESS_IS_GLOBAL ?? Not very snappy!...
Is there a mypy bug pertaining to this particular situation? I found related issues but didn't see an obvious one. Let me know if I should file one. I agree...
We can look into pyright, we've been using mypy for more of our projects. Pyright makes sense given we're from Microsoft but mypy seems to be more popular with Python...
Ah, great point! `Mapping[str, object]` works for those functions (they do not mutate) and makes mypy happy. Feel free to close this, unless there are additional improvements planned. By the...
I have gotten that error a few times. I resolve it by changing my Python setup, like changing what Python version I'm using. Do you know what version you're using...
It just worked for me with Python 3.10 inside a Dev Container. It doesn't work when I use my Mac's standard Python 3.9 installation. I think there may be an...
Okay great. I'm going to send a PR to update the Dev Container to make it more likely for other folks to not run into this issue, for devs using...
Thanks @Midnighter ! If folks are looking for a workaround for now, this is the conftest.py I'm using with latest flask-sqlalchemy for similar purposes - not as comprehensive as this...