Mingxuan Lin

Results 9 comments of Mingxuan Lin

Delete the file inside pyodide kernel doesn't trigger this bug. It only hangs when the file is manually deleted by the JupyterLite "File Browser" panel. ```python from pathlib import Path...

For who is searching for a dirty workaround, I wrote a [simple function](https://stackoverflow.com/a/55566003/6238076) to inject additional initializer to `Parallel` instance with a Loky backend. ```python def with_initializer(self, f_init): hasattr(self._backend, '_workers')...

More testing ![image](https://github.com/jupyterlite/jupyterlite/assets/8292110/91b0bec7-017c-450a-a7cd-2ba2e9ffc282)

After almost one year, this issue is still not fixed. A workaround is using the `NO_COLOR` environment variable, which inject the setting into [`rich.console.Console`][1]. [1]: https://github.com/pypa/pip/blob/711b5ac6fda451e6ee3426d13c1f67ee065c311b/src/pip/_vendor/rich/console.py#L742

This issue is related to https://github.com/tailwindlabs/tailwindcss/issues/16416 , which provides a **Minimal Reproduction example**: https://play.tailwindcss.com/ejMhEzAx6k ```html A button with no hover styles in Chrome/Edge/Brave 133 ``` Using your browser's inspector on...

Possible cause of this error: https://github.com/BeanieODM/beanie/blob/51e73ebc297df02082c5c683d555f7d057c4f6aa/beanie/odm/fields.py#L473-L479 See this [discussion](https://stackoverflow.com/a/77105412/11122845) of a similar error with Pydantic v2.4 A correct implementation already exists on the `Link` class. https://github.com/BeanieODM/beanie/blob/bdb6a8692c87ff289c61e6b7df608e30767a94d8/beanie/odm/fields.py#L408-L430

> Thanks for reporting the issue, and taking the time to investigate the cause. Would you like to send a PR to fix this issue, @gdlmx? Yes, I can prepare...

I have changed the title as requested. The failed test is caused by a [bug](https://github.com/pydantic/pydantic/issues/3390) in Pydantic V1. I cannot find an elegant solution, so I have to disable the...

It seems that [this commit](https://github.com/assafelovic/gpt-researcher/commit/717e63f5d9d2a93e1b1b2f6e40f2936c8c70976f#r144410845) (5 days ago) add `openai_api_key` to every LLM provider, which causes this bug. ```diff - provider = get_llm(llm_provider, model=model, temperature=temperature, max_tokens=max_tokens, **llm_kwargs) + provider =...