cduss commited on
Commit
b3a2577
·
1 Parent(s): 5a7d65a
Files changed (1) hide show
  1. server.py +2 -2
server.py CHANGED
@@ -5,12 +5,12 @@ app = Flask(__name__, static_url_path="", static_folder="static")
5
 
6
  @app.route("/")
7
  def root():
8
- return send_from_directory("static", "sinus.html")
9
 
10
 
11
  @app.route("/sinus")
12
  def sinus():
13
- return send_from_directory("static", "index.html")
14
 
15
 
16
  if __name__ == "__main__":
 
5
 
6
  @app.route("/")
7
  def root():
8
+ return send_from_directory("static", "index.html")
9
 
10
 
11
  @app.route("/sinus")
12
  def sinus():
13
+ return send_from_directory("static", "sinus.html")
14
 
15
 
16
  if __name__ == "__main__":