Lint: F401 <library> imported but unused

This commit is contained in:
2020-11-06 19:22:49 -05:00
parent ebf254f62d
commit d9e7b7ec15
30 changed files with 7 additions and 115 deletions

View File

@ -20,11 +20,10 @@
#
###############################################################################
import os
from flask_migrate import Migrate, MigrateCommand
from flask_script import Manager
from pvcapid.flaskapi import app, db, config
from pvcapid.flaskapi import app, db
migrate = Migrate(app, db)
manager = Manager(app)