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

Unified Diff: dashboard/dashboard/bisect_report.py

Issue 2501433002: Fixing wrong parentheses. (Closed)
Patch Set: Created 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/dashboard/bisect_report.py
diff --git a/dashboard/dashboard/bisect_report.py b/dashboard/dashboard/bisect_report.py
index 5af22d5c8b07711a7487253a1921f5722ec083e2..f72c009fab0a2565772d61ca770eadc4acd7e839 100644
--- a/dashboard/dashboard/bisect_report.py
+++ b/dashboard/dashboard/bisect_report.py
@@ -117,7 +117,7 @@ def _RevisionTable(results_data):
def RevisionRow(r):
number_of_observations = r.get(
- 'n_observations', len(r.get('values', []) or None))
+ 'n_observations', len(r.get('values', [])) or None)
result = [
r.get('revision_string', _MakeLegacyRevisionString(r)),
_FormatNumber(r['mean_value']),
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698