Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions malada/providers/dftconvergence.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def provide(
"Run scripts created, please run via slurm.\n"
"Quitting now."
)
quit()
return
else:
raise Exception("DFT calculations failed.")
if self.converged_cutoff is None:
Expand Down Expand Up @@ -199,7 +199,7 @@ def provide(
"Run scripts created, please run via slurm.\n"
"Quitting now."
)
quit()
return
else:
raise Exception("DFT calculations failed.")

Expand Down
2 changes: 1 addition & 1 deletion malada/providers/md.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def provide(
if self.parameters.run_system == "slurm_creator":
print("Created run scripts. Please run via slurm.")
print("Quitting...")
quit()
return
else:
folder_to_parse = self.external_run_folder

Expand Down
1 change: 0 additions & 1 deletion malada/providers/supercell.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ def provide(self, provider_path, cif_file):
self.supercell_file,
super_cell,
format="vasp",
long_format=True,
)
else:
copyfile(self.external_supercell_file, self.supercell_file)
Expand Down
Loading