diff options
-rw-r--r-- | resources/tools/presentation/generator_plots.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index 79ccf617cb..dd6c50d1d8 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -1097,7 +1097,7 @@ def plot_service_density_heatmap(plot, input_data): """ REGEX_CN = re.compile(r'^(\d*)C(\d*)N$') - + txt_chains = list() txt_nodes = list() vals = dict() @@ -1109,7 +1109,7 @@ def plot_service_density_heatmap(plot, input_data): if data is None: logging.error("No data.") return - + for job in data: for build in job: for test in build: |