Marclev78

Results 4 issues of Marclev78

The documentation on aliases only covers how to use these with native types, for example: `completed: bool = Field(..., alias="is_completed")` But I have a nested object that I want to...

It would be nice for to work for `` elements, or another component be provided for these (like, ``.

Best I can tell there is no way to specify that a short option should have an argument. I've tried the following: This errors: ``` opts = getopt.create([ ["d=ARG"] }).parseSystem();...

Given two handler functions: This works fine: ``` @router.get(path='/{category_slug}', response=CategorySchema) def get_category(request, category_slug: str): @router.delete(path='/{category_slug}', response={204: None}) def deactivate_category(request, category_slug: str) ``` But this doesn't and results in a 405...