Fixed html.

This commit is contained in:
Patrick_Pluto 2024-09-16 13:38:30 +02:00
parent 4cbb44b9fc
commit e3cdde8a74
3 changed files with 8 additions and 6 deletions

View file

@ -1,4 +1,4 @@
from flask import Flask
from flask import Flask, send_from_directory
app = Flask(__name__)
@ -7,5 +7,6 @@ app = Flask(__name__)
def index():
return app.send_static_file('index.html')
if __name__ == '__main__':
app.run()
app.run(debug=True)