Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1193)

Unified Diff: webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/test_data_generation.py

Issue 2812273002: Fix lint errors to enable stricter PyLint rules (Closed)
Patch Set: Rebased Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/test_data_generation.py
diff --git a/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/test_data_generation.py b/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/test_data_generation.py
index 76f82e00a97f8dd64aea7bf7137eaa6a8394494a..f42944cedd312574e5efbd1e24912609cbaad93b 100644
--- a/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/test_data_generation.py
+++ b/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/test_data_generation.py
@@ -191,10 +191,10 @@ class IdentityTestDataGenerator(TestDataGenerator):
def _Generate(
self, input_signal_filepath, input_noise_cache_path, base_output_path):
- CONFIG_NAME = 'default'
- output_path = self._MakeDir(base_output_path, CONFIG_NAME)
+ config_name = 'default'
+ output_path = self._MakeDir(base_output_path, config_name)
self._AddNoiseReferenceFilesPair(
- config_name=CONFIG_NAME,
+ config_name=config_name,
noisy_signal_filepath=input_signal_filepath,
reference_signal_filepath=input_signal_filepath,
output_path=output_path)

Powered by Google App Engine
This is Rietveld 408576698