Sacha Hu
Sacha Hu
@dairiki It looks like the `data_key` and `marshmallow_field` cannot be used at the same time, is that right? Does that mean that the `NewType` approach is the "better" way to...
Sorry, I actually found the answer to that. For anyone else, with a custom field you can pass a `data_key` into the serializer object: ```python @dataclass class CustomSchemaA: renamed_field: CustomEnum...
@t-houssian Thanks for the great work, this is a nice package to work with. Are you happy to merge this fix?
@eymeric-giraux I couldn't reproduce your problem. It seems to work fine on my side. Maybe the following will help: 1. Indentation matters so having the text indented within the note...
@jacobtomlinson I've had similar cases happen and I wonder how "correct" that would be from a software point of view: ```python def decorator(func: Callable) -> Callable: pass @decorator async def...
@eymeric-giraux I've tried removing the additional text `a correct note` and it seems to still be working fine on my side, maybe I'm doing something wrong? ```python def valid_note(): """...
Follow up: I've just tried adding a stub file to see how `autoapi` reacts. Technically works but you'd have to write a stub definition for all functions within the module...
@jacobtomlinson Disclaimer: I am merely an autoapi enthusiast so I'll try to be as helpful as possible :grinning: Right, that makes sense. I think there's still a question of whether...
I've tried downgrading to 3.0.0 but it still works on my side... Not sure what's causing the problem on your side, might be worth having a look through your `conf.py`.
The docs don't seem to point to any other events. From the code point of view, I think this is the only one in here. I think this is how...