diff options
| -rw-r--r-- | python/risk_insight/views.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/python/risk_insight/views.py b/python/risk_insight/views.py index e5699345..5dc07943 100644 --- a/python/risk_insight/views.py +++ b/python/risk_insight/views.py @@ -1,6 +1,3 @@ -import csv -import datetime -import os import psycopg2 from risk_insight import app @@ -116,7 +113,7 @@ def tranches(): @app.route("/indices.html") def indices(): - return render_template("indices.html", series=[9, 10, 11, 13] + list(range(16, 35))) + return render_template("indices.html", series=[9, 10, 11, 13] + list(range(16, 36))) @app.route("/") |
