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 722fb35 commit 4f325abCopy full SHA for 4f325ab
capsul/attributes/completion_engine_factory.py
@@ -40,7 +40,7 @@ def get_completion_engine(self, process, name=None):
40
if hasattr(process, 'completion_engine'):
41
ce = process.completion_engine
42
# just in case the process has been changed in the CE
43
- if ce and ce.process is not process:
+ if ce and ce.process != process:
44
ce.process = weak_proxy(process, ce._clear_node)
45
return ce
46
0 commit comments