Ran tests, and black afterwards. Updated changes.rst and included pre-commit hooks as required. Ran isort on imports.
11 lines
230 B
Python
11 lines
230 B
Python
from blueprintapp.apps.admin import admin
|
|
from blueprintapp.apps.frontend import frontend
|
|
|
|
from flask import Flask
|
|
|
|
app = Flask(__name__)
|
|
app.config["DEBUG"] = True
|
|
|
|
|
|
app.register_blueprint(admin)
|
|
app.register_blueprint(frontend)
|