Daniyar Yeralin
Daniyar Yeralin
**Describe the bug** When I tried to use `@cbv(router)` and added a class attribute with `Depends`, my pylint started complaining with `E1101: Instance of 'Depends' has no '...' member (no-member)`....
Consider following schema: ``` from marshmallow import Schema, fields class UserSchema(Schema): username = fields.String() age = fields.Integer() ``` Now, say my payload is of this form: ``` [{"username": "test-1", "age":...
Addresses #87 Because of lack of support of doubly (or more) nested schemas, some `title`s get rendered as `null` which breaks JSON schema validation. This PR simply skips `title` if...
Singly nested schema list like: ``` class TestSchema(Schema): test = List(Integer())) ``` Works just fine: ``` { "$ref": "#/definitions/TestSchema", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "TestSchema": { "additionalProperties": false, "properties": { "test":...
``` System Version: macOS 10.15.4 (19E287) Kernel Version: Darwin 19.4.0 Xcode 11.4.1 Build version 11E503a ``` During `pip install python-snappy`, received: ``` Installing collected packages: python-snappy Running setup.py install for...
Addresses 3rd solution from #29 Looks up optional `Schema-Reference` header that is suppose to contain referenced subjects in the following format: 1) `Schema-Reference: ; ; // without version` 2) `Schema-Reference:...
AVRO supports multi-schema reference i.e.: ``` { "type": "record", "namespace": "test", "name": "sub", "fields": [ { "name": "state", "type": "string" } ] } ``` ``` { "type": "record", "namespace": "test",...