Skip to content

Commit

Permalink
ext: Bootstrap4
Browse files Browse the repository at this point in the history
* Uses ` Bootstrap4` from `flask_bootstrap`.

Co-Authored-by: Peter Weber <[email protected]>
  • Loading branch information
rerowep authored and jma committed Jun 14, 2022
1 parent ba1dc71 commit ed3792f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from flask import Flask, current_app, g, redirect, request, session, url_for
from flask_babelex import Babel, Domain
from flask_babelex import gettext as _
from flask_bootstrap import Bootstrap
from flask_bootstrap import Bootstrap4
from pkg_resources import resource_filename

from flask_wiki import Wiki
Expand All @@ -34,7 +34,7 @@ def create_app(test_config=None):
else:
# load the test config if passed in
app.config.from_mapping(test_config)
Bootstrap(app)
Bootstrap4(app)
Wiki(app)
# use the flask-wiki translations
domain = Domain(resource_filename('flask_wiki', 'translations'))
Expand Down

0 comments on commit ed3792f

Please sign in to comment.