Skip to content

Commit

Permalink
py format
Browse files Browse the repository at this point in the history
  • Loading branch information
even1024 committed Oct 10, 2023
1 parent e700dd7 commit d909f49
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions api/tests/integration/tests/formats/smiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,7 @@
print(mol.smiles())

print("*** Suffoxides ***")
mols_smiles = [
"C1=C(C)C(=O)C[S@]1=O",
]
mols_smiles = ["C1=C(C)C(=O)C[S@]1=O"]
for sm in mols_smiles:
print("suffoxide:")
mol = indigo.loadMolecule(sm)
Expand All @@ -142,4 +140,4 @@
for i in range(mol.countBonds()):
bs = mol.getBond(i).bondStereo()
if bs > 0:
print("bond:%d stereo:%d" % (i, bs) )
print("bond:%d stereo:%d" % (i, bs))

0 comments on commit d909f49

Please sign in to comment.