Vyacheslav Tverskoy
Vyacheslav Tverskoy
Hi :wave: I've come across this issue while considering adding a linting rule to my codebase to disallow implicit string concatenation for reasons listed in [PEP3126](https://www.python.org/dev/peps/pep-3126/#problem), namely that code can...
Suggesting an alternative: github pages?
You can commit to `/docs` in master if a separate branch is not a good fit. https://help.github.com/en/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site#choosing-a-publishing-source
Not all `TaskImportError`s are equal. There are two kinds: - When we expect the task to become importable on its own - this typically happens as race conditions during deployments,...
Yep. See also the issue in the main repo ^
What would be an interface for the context? I'm afraid we might have to introduce a breaking change in the library's API. Current interface for field validation code is passing...
I agree this is mixing up shape validation and content validation, but it's so tempting to do so. Imagine this "before" state: ```python class MyObjectSchema(Schema): user_id = Integer() another_user_id =...