DmitrMakeev commited on
Commit
30cb684
1 Parent(s): 70f7ff7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -10,7 +10,7 @@ app.config['DEBUG'] = True
10
 
11
 
12
 
13
- @app.route('/')
14
  def index():
15
  return flask.render_template('index.html')
16
 
@@ -19,7 +19,7 @@ def index():
19
 
20
 
21
 
22
- @app.route('/test')
23
  def index():
24
  return flask.render_template('zapro.html')
25
 
 
10
 
11
 
12
 
13
+ @app.route("/")
14
  def index():
15
  return flask.render_template('index.html')
16
 
 
19
 
20
 
21
 
22
+ @app.route("/test")
23
  def index():
24
  return flask.render_template('zapro.html')
25