phihung

Results 8 comments of phihung

I don't know which style is this, but mkautodoc is used in the following package https://www.python-httpx.org/api/ Here is what its docstring looks like https://github.com/encode/httpx/blob/1bc3b0188a65cfa3f3dc8b85a0ed0e78d437ba5e/httpx/_api.py#L44

Here a quick example to reproduce Both initial value ` with gr.Tabs(selected="b") as tabs` and button click are ignored There are some warnings in the UI : `Tabs.svelte:84 Attempted to...

I had the same problem. Reload vscode has fixed the issue. I think the ticket should be closed.

Hi. I created a small, dependency-free tool to manage scripts directly from pyproject.toml: https://github.com/phihung/tomlscript It works with all dependencies management tools. Tested with uv, pip and poetry. ### Configuration example...

I found this medium [fasthtml-with-tailwind-css](https://medium.com/@pitvfx/fasthtml-with-tailwind-css-480b7590c79b ) that explains really well the configuration steps

Hi. I've been playing with the new reload. It works really well. Thanks a lot for the efforts. I found a potential issue: Sometime, `update_sources` function may take up to...

Yes. I did the tests. The `DeduperReloader` implementation correctly updates __closure__ attribute. But as I understand, there will be two modes of reloading: the new DeduperReloader and the old one...

In the mean time, I am using the following trick to avoid tests to fail **silently** in vscode ```python # tests/conftest.py @pytest.fixture def subtests(subtests): if "VSCODE_PID" in os.environ: subtests.test =...