Serge Mosin

Results 4 issues of Serge Mosin

Minimal working example: ```python from wtforms import DateTimeField, Form from wtforms.validators import DataRequired from wtforms_json import MultiDict class MyForm(Form): timestamp = DateTimeField(validators=[DataRequired()]) data = {'timestamp': 'asd'} formdata = MultiDict(data) form...

bug

Hello Dmitry! First of all, thanks a lot for your implementation of the LTI protocol in Python. As we've started to adopt the LTI integration in our Tool, we've noticed...

When running mypy on the code that uses flaky, you get: ``` Skipping analyzing 'flaky': found module but no type hints or library stubs ``` [Here](https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-type-hints-for-third-party-library) is how it can...

`datetime.timedelta` input values are now supported for `TimedeltaField`. Tests were updated.