Tuukka Mustonen
Tuukka Mustonen
**Is your feature request related to a problem? Please describe.** When referring to glossary items, you have to follow the exact form, and have to specify singular and plural form...
Pulling the latest (5.0) and: ``` ❯ ./scripts/update.sh Unloading ultrawidewindows ./scripts/uninstall.sh: 15: kpackagetool6: not found Already uninstalled adding: contents/ (stored 0%) adding: contents/code/ (stored 0%) adding: contents/code/main.js (deflated 85%) adding:...
https://pytest-asyncio.readthedocs.io/en/latest/reference/fixtures/index.html#event-loop suggests that it's fine to grab `event_loop` fixture in a non-async function. 0.21+ migration guide in https://pytest-asyncio.readthedocs.io/en/latest/how-to-guides/migrate_from_0_21.html suggests to convert all sync functions requesting the `event_loop` fixture into async...
### Suggested Behavior The `ValidationError` (why is it a `dataclass` btw?) and it's child classes don't provide any details of: - What actually failed (ie. what was the error message,...
A bit simplistic example: ```py class SomeProvider(BaseProvider): @provide async def some_client(self) -> AsyncGenerator[SomeAsyncClient, None]: async with SomeAsyncClient() as client: yield client ``` (1) Could we shorten that to: ```py class...
Could it support injection of class instances, for OOP design in the endpoints? E.g. FastAPI: ```py router = APIRouter(router_class=DishkaRouter) @dataclass class SomeController: dep: Dependency @router.get("/") async def get(self): print(self) ```...
Hey, seems like a well thought-out project 👍🏻 Though, is it supposed to work with dataclasses and inheritance? `diparent.py`: ```py from __future__ import annotations #