PandaByte

Results 5 issues of PandaByte

I'm a bit confused about the current state of NGL. According to GitHub, the latest release is v0.9.3 from 15 Oct 2016, while the version delivered by the unpkg CDN...

Resolves #171. Although the `weights` parameter was added to `SvgDrawer.draw()` in f3693b3, the method call in `Drawer.draw()` wasn't updated correspondingly. `Drawer.draw()` could be amended to also take a `weights` argument,...

According to the [flask-assets documentation about blueprints](https://flask-assets.readthedocs.io/en/latest/#flask-blueprints), a path prefix is used to denote the use of blueprint-specific static folders when defining bundles. However, this caused issues for my project,...

Fix #613. When using e.g. `fields.List` for response structures, any models nested inside are now correctly registered.

### **Code** ```python from flask import Flask from flask_restx import Resource, Api, fields app = Flask(__name__) api = Api(app) model = api.model('Model', {'foo': fields.String}) # @api.route('/get-one') # @api.doc(model=model) # class...

bug