Skip to content

Commit

Permalink
removed brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
csbrasnett committed Oct 31, 2023
1 parent 8ef0e42 commit edbfb6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vermouth/processors/apply_rubber_band.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def apply_rubber_band(molecule, selector,
to_key = idx_to_node[selection[to_idx]]
force_constant = constants[from_idx, to_idx]
length = distance_matrix[from_idx, to_idx]
if (force_constant > minimum_force):
if force_constant > minimum_force:
molecule.add_interaction(
type_='bonds',
atoms=(from_key, to_key),
Expand Down

0 comments on commit edbfb6f

Please sign in to comment.