Skip to content

Commit 601ec49

Browse files
committed
fix: use super
1 parent 5f1c902 commit 601ec49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nx_arangodb/classes/multigraph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ def has_edge_override(self, u, v, key=None):
278278

279279
def copy_override(self, *args, **kwargs):
280280
logger.warning("Note that copying a graph loses the connection to the database")
281-
G = Graph.copy(self, *args, **kwargs)
281+
G = super().copy(*args, **kwargs)
282282
G.edge_key_dict_factory = nx.MultiGraph.edge_key_dict_factory
283283
return G
284284

0 commit comments

Comments
 (0)