Ianis Vasilev

Results 5 issues of Ianis Vasilev

I understand that I can add examples to endpoints via ```python @api.method() def endpoint(value1: str = Body(example='test'), value2: int = Body(example=3)) ... ``` What to do if I want to...

enhancement

This allows `mypy` to recognize `unicodeit` as a typed dependency as per [PEP 561](https://peps.python.org/pep-0561/).

**Bug Report** `mypy` tries to infer the type parameters of a generic class even if they are explicitly given. **To Reproduce** ```python from typing import overload class Frobnicator[T]: # Using...

bug

While experimenting with internationalization of a personal project, I encountered two issues: * I had to translate a bulk of messages coming from click. * I had to configure gettext...