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

Unified Diff: telemetry/telemetry/benchmark.py

Issue 2978643002: Removing bad-continuation param and fixing resulting errors. Fixed indentation errors, in telemetry… (Closed)
Patch Set: Created 3 years, 5 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
« no previous file with comments | « telemetry/telemetry/__init__.py ('k') | telemetry/telemetry/benchmark_run_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: telemetry/telemetry/benchmark.py
diff --git a/telemetry/telemetry/benchmark.py b/telemetry/telemetry/benchmark.py
index a04d6b2f2cd14f3a2d20381772e19f6495f511f7..1b0b90acfc08e661a1a1eb9631b4958c9cd9bbc1 100644
--- a/telemetry/telemetry/benchmark.py
+++ b/telemetry/telemetry/benchmark.py
@@ -40,13 +40,11 @@ class BenchmarkMetadata(object):
return self._rerun_options
def AsDict(self):
- return {
+ return {\
'type': 'telemetry_benchmark',
'name': self._name,
'description': self._description,
- 'rerun_options': self._rerun_options,
- }
-
+ 'rerun_options': self._rerun_options}
class Benchmark(command_line.Command):
"""Base class for a Telemetry benchmark.
« no previous file with comments | « telemetry/telemetry/__init__.py ('k') | telemetry/telemetry/benchmark_run_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698