From f0aa8c8f556ca1f56f015db1f35591f54d6cd2c3 Mon Sep 17 00:00:00 2001 From: Charlles Abreu Date: Tue, 2 Jan 2024 11:24:49 -0500 Subject: [PATCH] Fixed code formatting --- cvpack/helix_rmsd_content.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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]