Skip to content

Commit

Permalink
ruff fix test 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Pranavkhade committed Jun 29, 2024
1 parent 519d5dd commit 9a1c920
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packman/apps/dci.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class DCI():

def __init__(self, mol, cutoff = 7.0, chain = None, n_com = None):
self.molObj = mol
assert isinstance(self.molObj, Protein) == True, "mol should be a packman.molecule.Protein object."
assert isinstance(self.molObj, Protein), "mol should be a packman.molecule.Protein object."

if chain:
self.atoms = [i for i in self.molObj[0][chain].get_calpha()]
Expand Down

0 comments on commit 9a1c920

Please sign in to comment.