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

Unified Diff: tools/telemetry/telemetry/unittest_util/simple_mock.py

Issue 739623005: [Telemetry] Resolve errors due to new pylint checker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ready to land Created 6 years, 1 month 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: tools/telemetry/telemetry/unittest_util/simple_mock.py
diff --git a/tools/telemetry/telemetry/unittest_util/simple_mock.py b/tools/telemetry/telemetry/unittest_util/simple_mock.py
index 73065ffa76860ea095062a8e2bc5db1222789620..8fe7ae2109b6e65ab5b3e672bb3a0da1263c8d86 100644
--- a/tools/telemetry/telemetry/unittest_util/simple_mock.py
+++ b/tools/telemetry/telemetry/unittest_util/simple_mock.py
@@ -53,7 +53,7 @@ class MockTrace(object):
self.next_call_index = 0
class MockObject(object):
- def __init__(self, parent_mock = None):
+ def __init__(self, parent_mock=None):
if parent_mock:
self._trace = parent_mock._trace # pylint: disable=W0212
else:
« no previous file with comments | « tools/telemetry/telemetry/unittest_util/run_tests.py ('k') | tools/telemetry/telemetry/unittest_util/system_stub_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698