Skip to content

Commit

Permalink
Pass inputfile as kwarg
Browse files Browse the repository at this point in the history
  • Loading branch information
Technici4n committed Dec 20, 2024
1 parent f9d32de commit 40a5a9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aiida_dftk/calculations.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def prepare_for_submission(self, folder):
cmdline_params = [
# Precompilation under MPI generally deadlocks. Make sure everything is already precompiled.
'--compiled-modules=strict',
'-e', 'using AiidaDFTK; AiidaDFTK.run("{}"; allowed_versions="{}")'.format(
'-e', 'using AiidaDFTK; AiidaDFTK.run(inputfile="{}", allowed_versions="{}")'.format(
self.metadata.options.input_filename,
_AIIDA_DFTK_VERSION_SPEC,
),
Expand Down

0 comments on commit 40a5a9d

Please sign in to comment.