Fix(backend): format files to satisfy github CI
This commit is contained in:
		@@ -1,7 +1,6 @@
 | 
				
			|||||||
from quart import Blueprint, render_template, ResponseReturnValue
 | 
					from quart import Blueprint, ResponseReturnValue, render_template
 | 
				
			||||||
from quart_rate_limiter import rate_exempt
 | 
					from quart_rate_limiter import rate_exempt
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
blueprint = Blueprint("serving", __name__)
 | 
					blueprint = Blueprint("serving", __name__)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -21,9 +21,9 @@ from quart_schema import QuartSchema, RequestSchemaValidationError
 | 
				
			|||||||
# Each blueprint is a logical collection of features in our web app
 | 
					# Each blueprint is a logical collection of features in our web app
 | 
				
			||||||
from backend.blueprints.control import blueprint as control_blueprint
 | 
					from backend.blueprints.control import blueprint as control_blueprint
 | 
				
			||||||
from backend.blueprints.members import blueprint as members_blueprint
 | 
					from backend.blueprints.members import blueprint as members_blueprint
 | 
				
			||||||
 | 
					from backend.blueprints.serving import blueprint as serving_blueprint
 | 
				
			||||||
from backend.blueprints.sessions import blueprint as sessions_blueprint
 | 
					from backend.blueprints.sessions import blueprint as sessions_blueprint
 | 
				
			||||||
from backend.blueprints.todos import blueprint as todos_blueprint
 | 
					from backend.blueprints.todos import blueprint as todos_blueprint
 | 
				
			||||||
from backend.blueprints.serving import blueprint as serving_blueprint
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
# For making sure error responses are in JSON format
 | 
					# For making sure error responses are in JSON format
 | 
				
			||||||
from backend.lib.api_error import APIError
 | 
					from backend.lib.api_error import APIError
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user