X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=PyPI%2FMLRsearch%2FMLRsearch%2FAbstractMeasurer.py;fp=resources%2Flibraries%2Fpython%2Fsearch%2FAbstractRateProvider.py;h=b972c4eb18558d7625a37844b470bd7652039a73;hb=a9f251c649a5dea7428a43dc24380077a72dacba;hp=125c2af8cc43962a10d2ff4ca5ebedb5df047a67;hpb=938a0c9cec6d2177e098653ad398372fb482c36f;p=csit.git diff --git a/resources/libraries/python/search/AbstractRateProvider.py b/PyPI/MLRsearch/MLRsearch/AbstractMeasurer.py similarity index 87% rename from resources/libraries/python/search/AbstractRateProvider.py rename to PyPI/MLRsearch/MLRsearch/AbstractMeasurer.py index 125c2af8cc..b972c4eb18 100644 --- a/resources/libraries/python/search/AbstractRateProvider.py +++ b/PyPI/MLRsearch/MLRsearch/AbstractMeasurer.py @@ -11,13 +11,13 @@ # See the License for the specific language governing permissions and # limitations under the License. -"""Module defining AbstractRateProvider class.""" +"""Module defining AbstractMeasurer class.""" from abc import ABCMeta, abstractmethod -class AbstractRateProvider(object): - """Abstract class defining common API for rate providers.""" +class AbstractMeasurer(object): + """Abstract class defining common API for measurement providers.""" __metaclass__ = ABCMeta