We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bdef5c commit c7f6683Copy full SHA for c7f6683
src/graph_notebook/decorators/decorators.py
@@ -136,7 +136,8 @@ def use_magic_variables(*args, **kwargs):
136
137
def neptune_db_only(func):
138
@functools.wraps(func)
139
- def check_neptune_db(self, *args, **kwargs):
+ def check_neptune_db(*args, **kwargs):
140
+ self = args[0]
141
if not hasattr(self.graph_notebook_config, 'neptune_service'):
142
return func(*args, **kwargs)
143
else:
0 commit comments