Flask - Middleware and Extensions
Identify the error in this WSGI middleware implementation:
class BrokenMiddleware:
def __init__(self, app):
self.app = app
def __call__(self, environ, start_response):
# Forgot to call the wrapped app
return 'Hello'