Jeremiah England
Jeremiah England
To avoid long lines for my variable declarations, sometimes I put the type hint for the variable on the line above. This avoids it getting reformatted into three lines by...
On the latest version of `ruff` (0.0.278) this fails on the following code: ```sh ruff --select RET503,RET505 test.py --fix --isolated # test.py:11:9: RET505 Unnecessary `else` after `return` statement ``` ```python...
The trick [explained here](https://github.com/agronholm/typeguard/issues/353#issuecomment-1656741153) used to make typegaurd use the runtime types but MyPy use the static-type-checking types sadly does not work with Pyright. ```python from typing import TYPE_CHECKING, Any,...
Trying to kill us all, I swear! Haha. I'm not sure how this didn't cause any issues for you. I am using Fish as my main shell but I think...
This PR updates the codebase and the build process to support the currently maintained Python versions, and drops support for unmaintained versions. The important thing here is dropping 2.7 support....
Arch Linux appears to not come with parallel installed by default, so I assume a few other distributions probably leave it off as well? I added it to the `deps-dev`...