From 3127bb27d0a75c0fa3c695a5d40d3a0fd5c321ad Mon Sep 17 00:00:00 2001 From: Rasmus Wriedt Larsen Date: Mon, 13 Jul 2020 10:54:47 +0200 Subject: [PATCH] Python: Remove strange empty line --- python/tools/recorded-call-graph-metrics/cg_trace.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/tools/recorded-call-graph-metrics/cg_trace.py b/python/tools/recorded-call-graph-metrics/cg_trace.py index 67256e47b3e..1a238f66e72 100755 --- a/python/tools/recorded-call-graph-metrics/cg_trace.py +++ b/python/tools/recorded-call-graph-metrics/cg_trace.py @@ -128,7 +128,6 @@ class CSVExporter(Exporter): with open(outfile_path, 'w', newline='') as csv_file: writer = None for (call, callable) in recorded_calls: - data = { **Exporter.dataclass_to_dict(call), **Exporter.dataclass_to_dict(callable)