-
-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should Series[Any]
be used internally instead of Series
?
#1133
Comments
We've had discussion about this in another PR. See #1093 (comment) Idea is to create an |
Is there something similar happening for DataFrames? I'm also running afoul of things being partially unknown using strict with basedpyright, specifically in the return of |
I don't think the return types of What might be happening is the following. Let's say you do |
@Dr-Irv Okay gotcha. I probably need to do some better things on my end also, so I'll see if I can address it that way first. Thanks! |
Currently,
Series
is used in several places where the inner type of the Series isn't known, e.g.:pandas-stubs/pandas-stubs/core/series.pyi
Lines 864 to 871 in 25fe8aa
There's a couple of issues I'm running into with this
First, the pyright-strict job marks this as partially unknown:
Second, when using
pyright
with--verifytypes
to look for uncovered parts of the public API, this is flagged as "unknown type":Would it be OK to use
Series[Any]
instead of justSeries
in such cases? Or, as some libraries do, to introduce a type aliasIncomplete: TypeAlias = Any
to mean "we should be able to narrow down the type but for now we're not doing so" and use that in some casesThe latter use-case (
--verifytypes
) can, I think, really help to prioritise which stubs to addThe text was updated successfully, but these errors were encountered: