Skip to content

Commit

Permalink
Backport fix from PR #224. [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
lohedges committed Dec 12, 2023
1 parent 322062a commit 8311ce2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/BioSimSpace/Parameters/_Protocol/_amber.py
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ def _get_disulphide_bonds(

# Try searching for disulphide bonds.
try:
disulphides = query(mol, property_map)
disulphides = query(mol, property_map).bonds()
except:
disulphides = []

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ def _get_disulphide_bonds(

# Try searching for disulphide bonds.
try:
disulphides = query(mol, property_map)
disulphides = query(mol, property_map).bonds()
except:
disulphides = []

Expand Down

0 comments on commit 8311ce2

Please sign in to comment.