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 b28a4eb commit e394e5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vision/google/cloud/vision/safe_search.py
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 e394e5b

Please sign in to comment.