Serhii Mozghovyi

Results 6 comments of Serhii Mozghovyi

+1 for passing context to validators. My use case is the following: ```python class ItemSchema(Schema): item_id = fields.Integer(validate=lambda val, ctx: val in ctx.get('admissible_ids', ())) schema = ItemSchema(context={'admissible_ids': WHITELISTED_IDS}) schema.load(input_dict) ```

@elefnikolaidis I'm not using Proguard at all and still having this issue. May be you get any ideas of how to fix it? I checked the resulting `classes.dex` file with...

@grabismartsolutions I managed to solve this issue. The thing is that all `internal/nls/*` .properties files should be included in the resulting .jar. These files are being accessed at runtime. I...

@JanMalte were you able to find a solution to this problem? Same question for @TheKalpit and @rrauenza. The original problem remains unsolved as far as I get it.

Is this going to be merged in? I ran into the same issue: my base HTML document starts with \, and the snippet gets injected right after it, before the...