This commit is contained in:
Yûki VACHOT 2021-10-18 08:21:51 +02:00
parent 65e9c80647
commit 1fe1c08bbd

2
app.py
View file

@ -11,7 +11,7 @@ app = Flask(__name__)
@app.route('/config')
def config(): # put application's code here
return str(cf.INDENT)+str(cf.WEATHER)+str(cf.WINDDIRS)
return str(INDENT)+str(WEATHER)+str(WINDDIRS)
@app.route('/')
def hello_world(): # put application's code here