Gastón Avila

Results 33 issues of Gastón Avila

I am trying to get flower running as a flask blueprint and I realized we could change templates to jinja so they can be shared. I'm submitting this PR both...

Fixes #121 and removes `"type": "object"` from referenced schemas

``` class ChildSchema(Schema): id = fields.Integer(required=True) class TestSchema(Schema): id = fields.Integer(required=True) nested_fld = fields.Nested(ChildSchema, allow_none=True) schema = TestSchema() dumped = validate_and_dump(schema) ``` should result on a schema that allows the...

Hi, we noticed that on the fields in our schemas that use fields.Raw, a string jsonschema type is returned and we expected an object type, is this expected or should...

When spinning up 2 instances of the redbeat scheduler holding DIFFERENT beat_schedule configurations, we notice that the second instance to come up installs static tasks from its config even if...

Hi, I have been reading about unitime and trying to wrap my head around it, to see if we could use to help high-schools create and manage their timetables. I...

enhancement

This is a work in progres PR to try to bring FileAwareEnv functionality found in django-environ to this package. Requesting for comments, I still need to polish it a lot,...

I tried doing a bit of research to fix this and could not make much progress. Building docs directly after cloning works well, but switching to sphinx-rtd-theme destroys the sidebar...

Hi @nickjj , we are using flask-webpack, thanks for creating it!. We have an entry in our webpack.config.js that points to a js file, i.e.: ``` customers: [ rootAssetPath +...