Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yishutu committed Jul 10, 2019
1 parent 4d312ea commit 2a333f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/python/openbabel/pybel.py
Expand Up @@ -764,15 +764,15 @@ def heavydegree(self):

@property
def heavyvalence(self):
raise AttributeError("This property has been renamed. Used Atom.heavydegree instead.")
raise AttributeError("This property has been renamed. Use Atom.heavydegree instead.")

@property
def heterodegree(self):
return self.OBAtom.GetHeteroDegree()

@property
def heterovalence(self):
raise AttributeError("This property has been renamed. Used Atom.heterodegree instead.")
raise AttributeError("This property has been renamed. Use Atom.heterodegree instead.")

@property
def hyb(self):
Expand Down Expand Up @@ -808,7 +808,7 @@ def type(self):

@property
def valence(self):
raise AttributeError("This property has been renamed. Used Atom.degree instead.")
raise AttributeError("This property has been renamed. Use Atom.degree instead.")

@property
def vector(self):
Expand Down

0 comments on commit 2a333f9

Please sign in to comment.