Flask - Testing Flask Applications
Identify the error in this pytest fixture code for a Flask app:
@pytest.fixture
def client():
app = Flask(__name__)
client = app.test_client()
return client
print('Cleanup done')