Sorted remaining content_type issues and blackened

This commit is contained in:
Richard 2021-07-19 20:09:09 +01:00
parent 38fbe530d2
commit b7c9d3b73b
13 changed files with 114 additions and 92 deletions

View file

@ -2,6 +2,7 @@ from labthings.views import View
from labthings import current_labthing
from flask import Response
class APISpecJSONView(View):
"""OpenAPI v3 documentation
@ -11,6 +12,7 @@ class APISpecJSONView(View):
def get(self):
return current_labthing().spec.to_dict()
class APISpecYAMLView(View):
"""OpenAPI v3 documentation
@ -18,4 +20,4 @@ class APISpecYAMLView(View):
"""
def get(self):
return Response(current_labthing().spec.to_yaml(), mimetype='text/yaml')
return Response(current_labthing().spec.to_yaml(), mimetype="text/yaml")