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
When passing the covariance as numpy array, the Indexable type generates linter warnings of the type:
Argument of type "NDArray[float64]" cannot be assigned to parameter "cov" of type "float | Indexable[float] | Indexable[Indexable[float]]" in function "propagate"
Type "NDArray[float64]" cannot be assigned to type "float | Indexable[float] | Indexable[Indexable[float]]"
"NDArray[float64]" is incompatible with "float"
"NDArray[float64]" is incompatible with "Indexable[float]"
"NDArray[float64]" is incompatible with "Indexable[Indexable[float]]"Pylance[reportGeneralTypeIssues](https://github.com/microsoft/pyright/blob/main/docs/configuration.md#reportGeneralTypeIssues)
The text was updated successfully, but these errors were encountered:
When passing the covariance as numpy array, the
Indexable
type generates linter warnings of the type:The text was updated successfully, but these errors were encountered: