Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Oct 15, 2024
1 parent d9e7e74 commit 6e292c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nx_arangodb/classes/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ def mirror_to_nxcg(func):
@wraps(func)
def wrapper(self, *args, **kwargs):
result = func(self, *args, **kwargs)
if self.mirror_to_nxcg and self.nxcg_graph is not None:
if self.mirror_crud_to_nxcg and self.nxcg_graph is not None:
getattr(self.nxcg_graph, func.__name__)(*args, **kwargs)
return result

Expand Down

0 comments on commit 6e292c6

Please sign in to comment.