Hmvp
Hmvp
This is also an issue if you try to use the devtool tool to modify recipes. It tries to do some parsing for versions etc and borks on the same...
It is the same issue. 1.6.0 didn't fix it because it is missing a check on active in the render function.. As per https://storybook.js.org/docs/addons/writing-addons/#add-a-panel the render function should return `null`...
Ah yes your gist seems very nice, I am not married to lines being a list or anything... One extra example: I wanted to add a check for the gitlab...
Typescript has a keyOf operator: https://www.typescriptlang.org/docs/handbook/2/keyof-types.html But to make that work here it could be something like: ```python class MyDict(TypedDict, total=False): a: int b: str def is_mydict_key(key: KeyOf[MyDict]) -> TypeGuard[WidgetOptionKeys]:...
Or fixtures that needs to be reused across different tests (modules) and are explicitly used...
This might have become a security issue: We got a warning for a CVE: https://nvd.nist.gov/vuln/detail/CVE-2024-23342 for `ecdsa` which is a direct dependency of python-jose.. Also the ecdsa package itself mentions...
In our case an imx28 with linux kernel version 4.1.9 I am not sure if it is the kernel version or the devicetree we are using but this is the...
Got the same after upgrade to macOS 14.6.1 On a M1 Pro Downgrading the image as [ghsbhatia](https://github.com/ghsbhatia) suggested made it work again...
> We discussed this internally. Building the formatter as a linter raised a couple of design questions: > > * The formatter would need to support `noqa` suppression comments >...
Another datapoint here: I want to configure ruff to run in the gitlab CI. `ruff check` supports `--output-format=gitlab`, `ruff format` does not.. Also I need to run two commands in...