Skip to content

Commit

Permalink
fix: bug introduced by ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
valentynbez committed Jun 26, 2024
1 parent 9015a9d commit c044a15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mDeepFRI/bio_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def get_residues_coordinates(structure: np.ndarray, chain: str = "A"):
protein_chain = structure[structure.chain_id == chain]
# extract CA atoms coordinates
ca_atoms = protein_chain[(protein_chain.atom_name == "CA")
& (protein_chain.hetero is not False)]
& (protein_chain.hetero == False)] # noqa

residues = str(
ProteinSequence(
Expand Down

0 comments on commit c044a15

Please sign in to comment.