Ali Hamdan
Ali Hamdan
It appears that #181 fixes `User.objects` type annotation. @bobthemighty would you like to change the PR to only include the test? Otherwise this PR can be closed.
Hello @sobolevn, I'd like to try and finish up this PR if that's OK with you.
It would be nice if mypy becomes smarter about unions of literals but if you want a quick workaround here you can replace `TimeRange | CreatedRange` by `Literal[TimeRange, CreatedRange]` (`Literal`...
> Tests are failing, I think because the `*Ts` syntax is 3.12 only. Maybe split that part of the test into its own case and make it run `--python-version 3.12`....
Thank you for working on this. Wouldn't this change make stubgen always skip private modules? Sometimes functions and classes defined in private modules are either re-exported or used in public...
I think `--include-private` is meant for private symbols like classes and functions, not modules (at least this is how it works currently). Suppose you have a public module in a...
Some questions for Alex and Jelle: 1. Do you want full parity with *stubdefaulter*? 2. ~Should I implement built in container types?~ (added) 3. What about name expression default like...
I installed the following packages ```txt matplotlib==3.7.1 numpy==1.24.3 pandas==2.0.2 scipy==1.10.1 seaborn==0.12.2 ``` and generated their stubs with mypy master then added defaults with stubdefaulter then compared the result with defaults...
> Hello! May I ask what's the status of this? 🙂 thank you! I don’t have an answer for you but if you need default values in stub files now...
The type annotations of pipe are correct -- it returns the same type returned by the input function. In your case, the function is declared to return a `DataFrame` so...