Flask - WebSocket and Real-Time
Identify the error in this Flask polling endpoint code:
from flask import Flask, jsonify
app = Flask(__name__)
@app.route('/poll')
def poll():
data = {'status': 'ok'}
