diff --git a/cvpack/helix_rmsd_content.py b/cvpack/helix_rmsd_content.py index 0f552b17..499018f3 100644 --- a/cvpack/helix_rmsd_content.py +++ b/cvpack/helix_rmsd_content.py @@ -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]