Пишет что ничего не выводит функция в фласке, почему?
from flask import Flask
from flask import render_template
app = Flask(__name__)
@app.route('/')
def hello_world():
render_template('index.html')
if __name__ == '__main__':
app.run()
TypeError: The view function did not return a valid response.The function either returned None or ended without a return statement
Что делать? есть папка templates с файлом index.html
ты даже не пытался перевести текст ошибки
The view function did not return a valid response.The function either returned None or ended without a return statement