| Index: webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/eval_scores_factory.py
|
| diff --git a/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/eval_scores_factory.py b/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/eval_scores_factory.py
|
| index b33d3f96b2036860d29b62ec1e0c0dbd41ed0d95..00e05377b6a9b74dda8d35c626fe7422ae8e5513 100644
|
| --- a/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/eval_scores_factory.py
|
| +++ b/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/eval_scores_factory.py
|
| @@ -17,8 +17,7 @@ from . import eval_scores
|
| class EvaluationScoreWorkerFactory(object):
|
| """Factory class used to instantiate evaluation score workers.
|
|
|
| - It can be used by instanciating a factory, passing parameters to the
|
| - constructor. These parameters are used to instantiate evaluation score
|
| + The ctor gets the parametrs that are used to instatiate the evaluation score
|
| workers.
|
| """
|
|
|
| @@ -27,6 +26,9 @@ class EvaluationScoreWorkerFactory(object):
|
|
|
| def GetInstance(self, evaluation_score_class):
|
| """Creates an EvaluationScore instance given a class object.
|
| +
|
| + Args:
|
| + evaluation_score_class: EvaluationScore class object (not an instance).
|
| """
|
| logging.debug(
|
| 'factory producing a %s evaluation score', evaluation_score_class)
|
|
|