Maddy Guthridge
Maddy Guthridge
Cool - I suppose it's less of an issue for when you run it async - sadly I haven't been able to do that for my project due to time...
So glad to see this exists! The orphaned processes that `sync-request` leaves make it very difficult to deal with, so this will hopefully be a massive improvement. This looks like...
My theory is that this button only sends press events, yikes
For anyone else that comes across this issue, this is the `launch.json` that worked for me: ```json { // Use IntelliSense to learn about possible attributes. // Hover to view...
I know this issue is pretty old, but adding type hints would seriously improve my life so much. Currently since a lot of functions don't have type hints, VS Code's...
@asmeurer Ok so the way I've managed to get the issue happening is as follows: * Install the Python extension in VS Code. This will install Pylance as a dependency....
I can't say I'm the most familiar with the way that Pylance works, but from what I've read it seems to work by stepping over the code until it finds...
Being honest, I doubt I'd be able to provide a huge number of type hints in a PR or something, since I'm not sure I'm familiar enough with SymPy to...
Yeah I just added a return type hint to the `integrate` function and it made such a huge improvement to PyLance's performance!!!  Are there any other places of particular...
@moorepants Type hints make static analysis of the code much easier, allowing for potential bugs to be caught even if a test hasn't been written for that particular case. As...