I'm not sure if I am misunderstanding this, but is it not possible to only pass node attributes or edge attributes, without necessarily having to pass both of them? From base.py I observe:
` def set_attr_graph_used(self, *args, **kwargs): # real signature unknown
"""
Set graph attribute used by the algorithm to compare graphs.
Parameters
node_attr_key : str
key of the node attribute
edge_attr_key: str
key of the edge attribute
"""
pass`
I'm not sure if I am misunderstanding this, but is it not possible to only pass node attributes or edge attributes, without necessarily having to pass both of them? From base.py I observe: ` def set_attr_graph_used(self, *args, **kwargs): # real signature unknown """ Set graph attribute used by the algorithm to compare graphs. Parameters