Skip to content

Commit b296b40

Browse files
authored
Revert "Fix NameError when pydot is not installed in Beam Playground (#38074)" (#38134)
This reverts commit 4605250.
1 parent 357b720 commit b296b40

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

sdks/python/apache_beam/runners/interactive/display/pipeline_graph.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -237,12 +237,6 @@ def _construct_graph(
237237
default_edge_attrs: (Dict[str, str]) a dict of attributes
238238
"""
239239
with self._lock:
240-
try:
241-
pydot.Dot()
242-
except NameError:
243-
raise RuntimeError(
244-
'pydot is required for pipeline graph generation. '
245-
'Install it with: pip install pydot')
246240
self._graph = pydot.Dot()
247241

248242
if default_vertex_attrs:

0 commit comments

Comments
 (0)