failable
failable
I like basedpyright. I use basedpyright in small-scale projects, typically around 5000 lines of code. However, basedpyright often easily consumes all my CPU, causing the completion menu in my editor...
As the title says...
Hello, I use `docker save` and `docker load` from different machines to save and load the `cargo-chef` packed image since the target host does not have internet connection. But when...
The command `tokei` runs forever in `servo`'s repo. After more than 1 hour on my Macbook, it is still running... ``` user@macos:~/Downloads/servo $ tokei --version tokei 12.1.2 compiled with serialization...
## Problem Description Enum type in function is not converted to JSON schema properly now. e.g. ```python class Sex(str, enum.Enum): Male = "male" Female = "female" def get_sex(sex: Sex) ->...
### Summary Builtin type not highlighted in `isinstance` Steps to reproduce: Input the following content in a Python buffer ```python a: list[int] = [] if isinstance(a, list): pass ``` Expected...
`basedpyright`'s type checking is helpful, but sometime I'd just want to ignore the error for the 3rd library without manually typing ` # pyright: ignore[reportUnknownVariableType,reportUnknownMemberType]`...
### Summary The issue did not exist until a recent update. Steps to reproduce: 1. Open Zed with empty config. 3. Input below code in a Python buffer ```python def...