Está dando erro Not Found, mesmo quando coloco na url o ip/inicio
- Serving Flask app 'aula01' (lazy loading)
- Environment: production WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
- Debug mode: off
- Running on http://127.0.0.1:5000/ (Press CTRL+C to quit) 127.0.0.1 - - [01/Jul/2022 22:23:57] "GET / HTTP/1.1" 404 - 127.0.0.1 - - [01/Jul/2022 22:24:03] "GET /inicio HTTP/1.1" 404 - 127.0.0.1 - - [01/Jul/2022 22:24:20] "GET /inicio HTTP/1.1" 404 -
Código: from flask import Flask, render_template
app = Flask(name)
app.route('/inicio') def ola(): return render_template('lista.html', titulo='Jogos')
app.run()