Skip to content

Commit

Permalink
Format black
Browse files Browse the repository at this point in the history
  • Loading branch information
pyiron-runner committed Feb 16, 2024
1 parent f6f4cd4 commit fce8831
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyiron_workflow/node_library/atomistic/calculator/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit fce8831

Please sign in to comment.