Skip to content

Commit

Permalink
Update gufe/components/proteincomponent.py
Browse files Browse the repository at this point in the history
Co-authored-by: Irfan Alibay <[email protected]>
  • Loading branch information
richardjgowers and IAlibay committed Apr 18, 2023
1 parent 1b9e17c commit f482830
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gufe/components/proteincomponent.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class ProteinComponent(ExplicitMoleculeComponent):
def __init__(self, rdkit: RDKitMol, name=""):
if not all(a.GetMonomerInfo() is not None for a in rdkit.GetAtoms()):
raise TypeError("Not all atoms in input have MonomerInfo defined. "
"Consider loading via MolFromPDBFile or similar.")
"Consider loading via rdkit.Chem.MolFromPDBFile or similar.")
super().__init__(rdkit=rdkit, name=name)

# FROM
Expand Down

0 comments on commit f482830

Please sign in to comment.