Skip to content

Commit

Permalink
un-updated ParallelGraph class
Browse files Browse the repository at this point in the history
  • Loading branch information
Schefflera-Arboricola committed Jan 31, 2024
1 parent 69a08b4 commit 5e9c645
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions nx_parallel/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,6 @@ class ParallelGraph:
def __init__(self, graph_object):
self.graph_object = graph_object

def __getattr__(self, name):
return getattr(self.graph_object, name)

def __iter__(self):
return iter(self.graph_object)

def __getitem__(self, key):
return self.graph_object[key]

def __reduce__(self):
return (self.__class__, (self.graph_object,))

def is_multigraph(self):
return self.graph_object.is_multigraph()

Expand Down

0 comments on commit 5e9c645

Please sign in to comment.