Add `graph` instance attribute to `nx.Graph` (#297)
This commit is contained in:
Родитель
dbb623eea9
Коммит
57e04e2471
|
@ -26,6 +26,7 @@ class _CachedPropertyResetterPred:
|
|||
|
||||
class DiGraph(Graph):
|
||||
|
||||
graph = ...
|
||||
_adj = ... # type: ignore
|
||||
_succ = ... # type: ignore
|
||||
_pred = ...
|
||||
|
|
|
@ -23,6 +23,7 @@ class _CachedPropertyResetterNode:
|
|||
|
||||
class Graph:
|
||||
|
||||
graph = ...
|
||||
_adj = ...
|
||||
_node = ...
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче