Skip to content

Commit

Permalink
fix: Prevent Flask from sorting keys, closes #77
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Aug 15, 2023
1 parent 7a480c2 commit f737d4d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions extension_explorer/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ def get_locale():
app.jinja_env.trim_blocks = True
app.jinja_env.lstrip_blocks = True
app.json.compact = False
app.json.sort_keys = False
app.config.from_object(Configuration)
babel = Babel(app, locale_selector=get_locale)

Expand Down

0 comments on commit f737d4d

Please sign in to comment.