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
Type hinting does not take into account default None values for most fields, which breaks Pylance linting
For example, a simple
db.collection(f"mycollection").stream())
yields an error from Pylance
Argument of type "None" cannot be assigned to parameter "transaction" of type "Transaction" in function "stream"
Type "None" cannot be assigned to type "Transaction"Pylance[reportGeneralTypeIssues](https://github.com/microsoft/pyright/blob/main/docs/configuration.md#reportGeneralTypeIssues)
I saw a similar error in #570, I think most of the type hinting should be reviewed.
Type hinting does not take into account default
Nonevalues for most fields, which breaks Pylance lintingFor example, a simple
yields an error from Pylance
I saw a similar error in #570, I think most of the type hinting should be reviewed.
Environment details
google-cloud-firestoreversion: 2.9.1Steps to reproduce
In VSCode :