Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[patch] Exploit the mangling flag #226

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pyiron_workflow/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ def __init__(self, project, job_name):
raise NotImplementedError("Node jobs are only available in python 3.11+")
super().__init__(project, job_name)
self._function = _node_out
self._mangle_name_on_save = False # This class is expected to be accessed from
# the regular job creation, not via a wrapper function, so we can rely on users
# to provide a job name just like usual.
self.input.update(get_function_parameter_dict(funct=_node_out))
self._executor_type = None

Expand Down
Loading