diff --git a/pyiron_workflow/node_library/atomistic/calculator/generic.py b/pyiron_workflow/node_library/atomistic/calculator/generic.py index b4ccc100..fcf40a1d 100644 --- a/pyiron_workflow/node_library/atomistic/calculator/generic.py +++ b/pyiron_workflow/node_library/atomistic/calculator/generic.py @@ -8,9 +8,10 @@ @single_value_node("generic") -def static(structure=None, engine=None): #, keys_to_store=None): +def static(structure=None, engine=None): # , keys_to_store=None): output = engine( - structure=structure, calculator=InputCalcStatic() #keys_to_store=keys_to_store) + structure=structure, + calculator=InputCalcStatic(), # keys_to_store=keys_to_store) ) return output.generic