Skip to content

Commit

Permalink
Reformat code with Ruff.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlesieur committed Nov 7, 2023
1 parent f2fb5de commit 1cfeeb6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@
config_update(app.config, kerko.DEFAULTS)

# Update app configuration from environment variables.
app.config.from_prefixed_env(prefix='MYAPP')
app.config.from_prefixed_env(prefix="MYAPP")

# Make changes to the Kerko configuration here, if desired.
config_set(app.config, 'kerko.meta.title', 'My App')
config_set(app.config, "kerko.meta.title", "My App")

# Validate configuration and save its parsed version.
parse_config(app.config)

# Initialize the Composer object.
app.config['kerko_composer'] = Composer(app.config)
app.config["kerko_composer"] = Composer(app.config)

# Make changes to the Kerko composer object here, if desired.

babel = Babel(app)
bootstrap = Bootstrap4(app)

app.register_blueprint(kerko.make_blueprint(), url_prefix='/bibliography')
app.register_blueprint(kerko.make_blueprint(), url_prefix="/bibliography")

0 comments on commit 1cfeeb6

Please sign in to comment.