toppk

Results 27 comments of toppk

> Switching from `str | None = None` to `Optional[str] = None` worked for me. That is a pretty good workaround, but for me it means that I have to...

Just to give my two cents. I'm doing something like this (not fully implemented) but with attr, my poison of choice atm. One thing that I'll add is that my...

I've thought about my issue and what I'd want a solution to look like. I want to mention https://github.com/jcrist/msgspec/issues/140 because it is a similar problem, but I think over there...

i just noticed https://github.com/jcrist/msgspec/pull/663 which is another way to implement similar capability. I'm not sure if my way work work for that user, but their way would likely work for...

poor workaround, but you can set the columnWidth to avoid the issue, e.g. ` "evenBetterToml.formatter.columnWidth": 150` `

in case any else finds this, enjoy my monkey patch: ```python def patch_click_func_param() -> None: """Patch click.FuncParamType to forward ValueError text to Click.""" from click.types import FuncParamType # noqa: PLC0415...

> Disable the `completions.autoImport` configuration item will be fine if you want to use `ty` like `pyright`. I believe that all things have been clearly clarifed above. auto import seems...