You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On line 211, conll.py script makes a call to DependencyTree.add_node passing 2 positional arguments. However, the documentation specifies that it accepts only 1 argument. I couldn't get this script to work using networkx v2.3 nor v2.5
[ins] In [3]: T.add_node?
Signature: T.add_node(node_for_adding, **attr)
Docstring:
Add a single node `node_for_adding` and update node attributes.
Parameters
----------
node_for_adding : node
A node can be any hashable Python object except None.
attr : keyword arguments, optional
Set or change node attributes using key=value.
The text was updated successfully, but these errors were encountered:
On line 211, conll.py script makes a call to DependencyTree.add_node passing 2 positional arguments. However, the documentation specifies that it accepts only 1 argument. I couldn't get this script to work using networkx v2.3 nor v2.5
The text was updated successfully, but these errors were encountered: