Skip to content

Commit

Permalink
Fixed code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
craabreu committed Jan 2, 2024
1 parent daccc6d commit f0aa8c8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cvpack/helix_rmsd_content.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,9 @@ def __init__( # pylint: disable=too-many-arguments
halfExponent: int = 3,
normalize: bool = False,
) -> None:
assert 6 <= len(residues) <= 1029, "The number of residues must be between 6 and 1029"
assert (
6 <= len(residues) <= 1029
), "The number of residues must be between 6 and 1029"
num_residue_blocks = len(residues) - 5
atoms = list(map(self._get_atom_list, residues))
positions = [openmm.Vec3(*x) for x in self._ideal_helix_positions]
Expand Down

0 comments on commit f0aa8c8

Please sign in to comment.