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
"list[FloatArray]" is not assignable to "list[Array[Unknown]]"
Type parameter "_T@list" is invariant, but "FloatArray" is not the same as "Array[Unknown]"
I've seen a couple similar errors for other places where I try to pass list. For pq.ParquetDataset has an error of,
"list[str]" is not assignable to "list[StrPath | NativeFile | IO[Unknown]]"
Type parameter "_T@list" is invariant, but "str" is not the same as "StrPath | NativeFile | IO[Unknown]"
I'd guess most list in input arguments should be Sequence.
The text was updated successfully, but these errors were encountered:
This code fails with a type error of
I've seen a couple similar errors for other places where I try to pass list. For
pq.ParquetDataset
has an error of,I'd guess most list in input arguments should be Sequence.
The text was updated successfully, but these errors were encountered: