euri10

Results 238 comments of euri10

thanks for the mcve, I can confirm the flag doesnt do anything and isnt even tested. on your question, this is right at the intersection of the last 2 big...

Tracking with: ```shell ❯ grep -ro "code-block" docs | cut -d: -f1 | sort | uniq -c | sort -k2 | awk '{print $2, $1}' ``` - [ ] docs/index.rst...

in a few recent PR I moved codeclock to literalinclude and rename the `docs/examples/xxx.py` to `docs/examples/test_xxx.py`, added a test for the example in question so that `make test-examples` runs them,...

> @tofran It looks like there are many unrelated changes here (perhaps linting related). Maybe it's just a product of targeting the v3 branch and there's still some work being...

Interested : I was using this package a lot on a particular project that used FastAPI then switched to Litestar and cant use it anymore which is too bad because...

> The reason it works is a combination of luck and the fact that Litestar embraces ASGI (should it be featured on awesome-asgi?). oh and a big yes !

I definitely +1 this : I found that when switching from another framework, sometimes you make big refactors, forget some stuff and get hit by that and it's hard to...

I should have listed them, but there were other cases where this `ImproperlyConfiguredException` popped up in case of big refactors, and wasn't too useful because of the lack of more...

any reason you create the redis connection inside the generator ? that seems highly inneficient, usually that's what lifespan is for