Abdelrahman Hamdy Metwaly

Results 3 comments of Abdelrahman Hamdy Metwaly

Your code is not a valid JSX the problem is in { color: red } cause u r using " { " the items between curly braces will interpreted as...

I solved this by overriding the behavior of schema for nested class ``` class NullableNested(Nested): def schema(self): schema = super(NullableNested, self).schema() del schema['$ref'] ref = '#/definitions/{0}'.format(self.nested.name) if self.as_list: schema['type'] =...