We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb14029 commit 90cf697Copy full SHA for 90cf697
datajoint/erd.py
@@ -50,7 +50,7 @@ class ERD:
50
"""
51
52
def __init__(self, *args, **kwargs):
53
- warnings.warn('ERD functionality depends on matplotlib, networkx, and pygraphviz. '
+ warnings.warn('ERD functionality depends on matplotlib and pygraphviz. '
54
'Please install both of these libraries to enable the ERD feature.')
55
else:
56
class ERD(nx.DiGraph):
@@ -228,7 +228,6 @@ def _make_graph(self):
228
return graph
229
230
def make_dot(self):
231
- import networkx as nx
232
233
graph = self._make_graph()
234
graph.nodes()
0 commit comments