Vikas01 commited on
Commit
9d9428d
·
1 Parent(s): 48fc997

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -129,9 +129,10 @@ def test_connect():
129
  # return render_template('attendance.html', attendance=attendance)
130
 
131
  @app.route("/")
132
- def index():
133
- return 'hello'
134
- # return render_template('index.html')
 
135
 
136
 
137
  if __name__ == '__main__':
 
129
  # return render_template('attendance.html', attendance=attendance)
130
 
131
  @app.route("/")
132
+ def home():
133
+ return render_template('index.html')
134
+ # return 'hello'
135
+
136
 
137
 
138
  if __name__ == '__main__':