aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2020-06-25 18:30:24 +0530
committerNavan Chauhan <navanchauhan@gmail.com>2020-06-25 18:30:24 +0530
commit2053f85ee3c0e3b46a47091c2f4155a7bebd5035 (patch)
treed3598131922ffad9612dbc2b8b0f8115d6a17cfc /app
parent4c660071a91310e55994fecc69feb8ed80592c2c (diff)
removed unused imports
Diffstat (limited to 'app')
-rw-r--r--app/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views.py b/app/views.py
index 78d606f..67bd94f 100644
--- a/app/views.py
+++ b/app/views.py
@@ -6,7 +6,7 @@ This file creates your application.
"""
import os
from app import app
-from flask import render_template, request, redirect, url_for, flash, session, abort
+from flask import render_template, request, flash
from werkzeug.utils import secure_filename
# Note: that when using Flask-WTF we need to import the Form Class that we created