Thom Sentner
Thom Sentner
### **Code** ```python import json import requests from flask import Flask, request from flask_restx import Api, Resource, fields from jsonschema import FormatChecker app = Flask(__name__) api_restplus = Api( app, #...
**Is your feature request related to a problem? Please describe.** Currently, it's quite unclear which arguments are accepted by which `flask_restx.fields` functions. For example, for `fields.Float`, [none are explicitly documented](https://flask-restx.readthedocs.io/en/latest/api.html#flask_restx.fields.Float)....
**Describe the bug** Responses initiated through `flask.abort` / `werkzeug.exceptions.abort` are always logged as HTTP status code 500 by Flask-MonitoringDashboard, even when e.g. `flask.abort(400)` is called. **To Reproduce** ```python import flask_monitoringdashboard...
### Proposal Implement a flag that disables the table autoformatter for a file or part of file. Similar to `#noqa`. ### Other information I have a markdown file where a...