Skip to content

Commit

Permalink
Fixed str concat
Browse files Browse the repository at this point in the history
  • Loading branch information
whitead committed Nov 22, 2024
1 parent 40f5089 commit 217585e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exmol/exmol.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ def _check_alphabet_consistency(
if check and not smiles_symbols.issubset(alphabet_symbols):
# show which symbols are not in alphabet
raise ValueError(
"symbols not in alphabet" + smiles_symbols.difference(alphabet_symbols)
"symbols not in alphabet" + str(smiles_symbols.difference(alphabet_symbols))
)
return smiles_symbols.issubset(alphabet_symbols)

Expand Down

0 comments on commit 217585e

Please sign in to comment.