(*args, **kwargs)
| 42 | ) |
| 43 | |
| 44 | def jsonify(*args, **kwargs): |
| 45 | response = flask_jsonify(*args, **kwargs) |
| 46 | if not response.data.endswith(b'\n'): |
| 47 | response.data += b'\n' |
| 48 | return response |
| 49 | |
| 50 | # Prevent WSGI from correcting the casing of the Location header |
| 51 | BaseResponse.autocorrect_location_header = False |
no outgoing calls
no test coverage detected
searching dependent graphs…