blockstream-satellite-api/server/queues.py
Blockstream Satellite 76a51eec52 Add missing blank lines around class methods
This verification was added on yapf 0.32 and it follows the pep8
specification.
2021-12-28 12:22:58 -03:00

10 lines
298 B
Python

from flask_restful import Resource
from flask import render_template, make_response
import constants
class QueueResource(Resource):
def get(self):
return make_response(render_template('queue.html', env=constants.env),
200, {'Content-Type': 'text/html'})