Skip to content

Commit 41de3eb

Browse files
committed
Bump dependencies.
1 parent a95eab7 commit 41de3eb

File tree

4 files changed

+82
-65
lines changed

4 files changed

+82
-65
lines changed

Pipfile.lock

+47-42
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flask_assets_tutorial/assets.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def compile_static_assets(assets):
2727
assets.register('main_styles', main_style_bundle)
2828
assets.register('main_js', main_js_bundle)
2929
assets.register('admin_styles', admin_style_bundle)
30-
if app.config['FLASK_ENV'] == 'development': # Only rebuild bundles in development
30+
if app.config['FLASK_ENV'] == 'development':
3131
main_style_bundle.build()
3232
main_js_bundle.build()
3333
admin_style_bundle.build()

poetry.lock

+33-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wsgi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
app = create_app()
55

66
if __name__ == "__main__":
7-
app.run(host='0.0.0.0', debug=True)
7+
app.run(host='0.0.0.0')

0 commit comments

Comments
 (0)