From a1ae5856dcdde44d0066cc037cc22dbc865f686c Mon Sep 17 00:00:00 2001 From: Alejandro Jaramillo Date: Mon, 28 Aug 2023 16:07:17 +0200 Subject: [PATCH] Deleting ploting graph --- kpops/pipeline_generator/pipeline.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/kpops/pipeline_generator/pipeline.py b/kpops/pipeline_generator/pipeline.py index 1510669eb..c82ebec7f 100644 --- a/kpops/pipeline_generator/pipeline.py +++ b/kpops/pipeline_generator/pipeline.py @@ -7,7 +7,6 @@ from contextlib import suppress from pathlib import Path -import matplotlib.pyplot as plt import networkx as nx import yaml from pydantic import BaseModel, Field @@ -201,7 +200,6 @@ def generate_graph(self): self.components.graph_components.add_edge( component_vertex_name, output_topic ) - nx.draw(self.components.graph_components, with_labels=True) def validate_graph_components(self): if not nx.is_directed_acyclic_graph(self.components.graph_components):