Victorien
Victorien
It looks like it's still not working so far. According to the [docs](https://vuejs.github.io/vetur/guide/snippet.html), anything between `` should have `vue-html` snippets available. But the snippets are behaving incorrectly: Working correctly outside...
Does not fix the issue, but you could use `tex_to_color_map` instead: ```py limit = MathTex( r"\lim_{x\to-\infty}\frac{\sqrt{x^2+1}}{x}", tex_to_color_map={ 'x': ORANGE } ) ``` Which interestingly raises a LaTeX error: `ERROR LaTeX...
The `multi-line` prop is supposed to be a boolean, and the `2.x` [docs](https://vuetifyjs.com/en/components/snackbars/#multi-line) example is indeed unclear, as it is using the prop this way: `:multi-line="multiLine"` In the `3.x` [docs](https://next.vuetifyjs.com/en/components/snackbars/#multi-line),...
@relsunkaev If you haven't got time to work on this, I can make a draft PR regarding this issue. If you've already made some progress, I'd be happy to help
> It's still an issue until Jan 2024. Vetur isn't maintained anymore, you should switch to Volar.
@Harmon758 any news on this PR? I'd like to contribute to this if you don't have time. Do you think we could merge this one? Then we'll be able to...
> I was thinking of stubs instead of annotating the codes directly Hi @auvipy, I wanted to continue working on type hints for `kombu` and `celery` (preferably `kombu` first as...
Since Python 3.11, [`Any`](https://docs.python.org/3/library/typing.html#typing.Any) is considered to be a base class. As stated [here](https://github.com/python/mypy/issues/12757#issuecomment-1332652065), mypy doesn't seem to support this feature yet when using `NewType`: ```python T = NewType("T", Any)...
As stated in https://github.com/typeddjango/djangorestframework-stubs/pull/315, `django-rest-framework` is a [good example](https://github.com/encode/django-rest-framework/blob/master/rest_framework/serializers.py#L120-L125) that would benefit from the requested behavior. I'm curious to hear about the false positives that this caused
I've tried reverting this specific check (https://github.com/Viicos/mypy/commit/016abc352090515ab28dafdb44f4be92c0c3fcac), but according to the `mypy_primer` output, this seems to break a lot of things (my fix is probably wrong)