LGTM fixes. Remove unused import and variables

This commit is contained in:
Khanh Ngo
2019-12-07 20:20:40 +07:00
parent 53a7545ccc
commit 6af94df00a
13 changed files with 29 additions and 29 deletions

View File

@ -49,7 +49,7 @@ def create_app(config=None):
# HSTS
if app.config.get('HSTS_ENABLED'):
from flask_sslify import SSLify
_sslify = SSLify(app)
_sslify = SSLify(app) # lgtm [py/unused-import]
# Load app's components
assets.init_app(app)