I am new to flask.
Change the contents of index.html file and then again run the app.py , changes don't get reflected. I only see the previous index.html file data.
Below is the code snippet,
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def home():
return render_template("index.html")
if __name__ == '__main__':
app.run()