diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-06-25 18:30:24 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-06-25 18:30:24 +0530 |
commit | 2053f85ee3c0e3b46a47091c2f4155a7bebd5035 (patch) | |
tree | d3598131922ffad9612dbc2b8b0f8115d6a17cfc | |
parent | 4c660071a91310e55994fecc69feb8ed80592c2c (diff) |
removed unused imports
-rw-r--r-- | app/views.py | 2 |
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 |