Skip to content

Commit

Permalink
Vision: Fix "medical_likelihood" typo. (#4061)
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver authored and lukesneeringer committed Sep 26, 2017
1 parent 21da2eb commit 878d62e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def __init__(self, adult_likelihood, spoof_likelihood, medical_likelihood,
violence_likelihood):
self._adult_likelihood = adult_likelihood
self._spoof_likelihood = spoof_likelihood
self._medical_likeliehood = medical_likelihood
self._medical_likelihood = medical_likelihood
self._violence_likelihood = violence_likelihood

@classmethod
Expand Down Expand Up @@ -104,7 +104,7 @@ def medical(self):
:rtype: :class:`~google.cloud.vision.likelihood.Likelihood`
:returns: The ``Likelihood`` that the image is medical in origin.
"""
return self._medical_likeliehood
return self._medical_likelihood

@property
def violence(self):
Expand Down

0 comments on commit 878d62e

Please sign in to comment.