KotlinIsland

Results 497 comments of KotlinIsland

my first suspicion would be the signature of `set.add`. will investigate

Code sample in [basedpyright playground](https://basedpyright.com/?pyrightVersion=1.28.0&typeCheckingMode=standard&code=DYAgvCDaCMA0ICYC6AoAzgLhGgpgF0gHsAjAKxwGM8lwQBvaAXxQBMsWBLKosyveEuSo0IDLAmboAdAEMWLABTAAlCBABiEADlCIAO4yATgDsOxgObS5ilqo3bdBk2cutIwESGhrNxx0dMLFCA) ```python l = [1, 2] s: set[object] = {1} d: dict[object, object] = {1: 2} s.add(l) # No warning s.add(d) # No warning d[l] =...

Poetry and PDM support this feature, I think that it is essential for managing any kind of project that will be developed/run on different platforms.

was this resolved in? - #319

looks like it's also affecting upstream, here's a minified example: ```py from typing import overload from typing_extensions import Unpack class A: @overload def f(self, *args: Unpack[tuple[Unpack[tuple[str, ...]]]]) -> int: ......

btw, i would recomment `uv` (+ [pyprojectx](https://github.com/pyprojectx/pyprojectx)) over `poetry` i think it would be a good idea to add this project to the [based]mypy primer additionally, i would like to...

my telegram is: `@KotlinIslandsTaken`

i've run into this kind of stuff before and it's an absolute nightmare, i think it would require a complete rewrite of the arg parsing

feel free to take a crack at it, when we have run into this we resorted to writing additional config files