pylint issues resolved
Ran tests, and black afterwards. Updated changes.rst and included pre-commit hooks as required. Ran isort on imports.
This commit is contained in:
parent
3dc6db9d0c
commit
dde76ea960
32 changed files with 114 additions and 132 deletions
|
|
@ -1,9 +1,11 @@
|
|||
from blueprintapp.apps.admin import admin
|
||||
from blueprintapp.apps.frontend import frontend
|
||||
|
||||
from flask import Flask
|
||||
|
||||
app = Flask(__name__)
|
||||
app.config["DEBUG"] = True
|
||||
from blueprintapp.apps.admin import admin
|
||||
from blueprintapp.apps.frontend import frontend
|
||||
|
||||
|
||||
app.register_blueprint(admin)
|
||||
app.register_blueprint(frontend)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue