Skip to content

Commit

Permalink
Tox fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Jul 28, 2023
1 parent 95bcdb4 commit 2b33517
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scholia/app/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1898,11 +1898,11 @@ def show_chemical_class(q):
"""
entities = wb_get_entities([q])
smiles = entity_to_smiles(entities[q])
return render_template('chemical-class.html',
q=q,
smiles=smiles,
third_parties_enabled=current_app.third_parties_enabled
)
return render_template(
'chemical-class.html',
q=q,
smiles=smiles,
third_parties_enabled=current_app.third_parties_enabled)


@main.route('/chemical-class/')
Expand Down

0 comments on commit 2b33517

Please sign in to comment.