Make the dart formatter happy
Bug: 173189095
Change-Id: I9c2c8bf00588fd2b00b30b063d4457ba4db6bc46
diff --git a/tools/run_on_app_dump.py b/tools/run_on_app_dump.py
index e986fef..c62860c 100755
--- a/tools/run_on_app_dump.py
+++ b/tools/run_on_app_dump.py
@@ -1007,6 +1007,7 @@
def print_golem_config(options):
print('// AUTOGENERATED FILE from tools/run_on_app_dump.py in R8 repo')
print('part of r8_config;')
+ print('')
print('final Suite dumpsSuite = new Suite("OpenSourceAppDumps");')
print('')
print('createOpenSourceAppBenchmarks() {')
@@ -1017,7 +1018,7 @@
print_indented('{', indentation)
indentation = 4
print_indented('var name = "%s";' % app.name, indentation)
- print_indented('var benchmark = ', indentation)
+ print_indented('var benchmark =', indentation)
print_indented(
'new StandardBenchmark(name, [Metric.RunTimeRaw, Metric.CodeSize]);',
indentation + 4)