Mateo Chronis
Mateo Chronis
I use something like this in my codebase, it works for `requests` and `aiohttp` clients, not sure about `twisted` ``` from uplink.retry.retry import _RetryTemplate, retry class _RetryTemplateWithLog(_RetryTemplate): def after_response(self, request,...
Hi @mure found any workaround for this?
I have been using the code below: ``` # reusable sentinel class # https://peps.python.org/pep-0661/ NOT_SET = Sentinel("NOT_SET") class OptionalField(Field): """Extend the `uplink.Field` class to make it optional. It is used...