Yoann Guillard

Results 7 issues of Yoann Guillard

My way to install in .config/tmux

I did a script that auto generate pug snippets from html ones. so i did a lot of conversion with this command `html2pug < tmp.html > tmp.pug -f -t` and...

It is working but probably not the best conception. But can give ideas Other concepts: https://github.com/Textualize/textual/pull/54

```diff @overload @classmethod def query( cls, - my_list: list[Whatever | int] = [], + my_list: list[Whatever | int] | None = None, ) -> Whatever: - ... + if my_list...

I'm making tests about python typing's state of art, and I noticed few issues with `TypedDict`. I will use `->` for start completion and `_` for next cursor position. ```python...

feature

`ParamSpec`, `TypeVar`, `TypeVarTuple` have a `__default__` attribute, which is evaluated to `NoDefault`, when no default is provided in constructor : ```python from typing import ParamSpec, TypeVar, TypeVarTuple, Any print(f'{TypeVar("Plop").__default__ =...

I created an experimental system to have different shortcut depending on mod. I let it here if anyone is interesred, it is for now totally experimental.