Skip to content

Commit e4c584f

Browse files
add missing output_dir kwarg to vaspinputset.write_input
1 parent 00a25ee commit e4c584f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymatgen/io/vasp/sets/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ def write_input(
362362
cif_name = f"{output_dir}/{struct.formula.replace(' ', '')}.cif"
363363

364364
vasp_input.write_input(
365-
output_dir,
365+
output_dir=output_dir,
366366
make_dir_if_not_present=make_dir_if_not_present,
367367
cif_name=cif_name,
368368
zip_name=f"{type(self).__name__}.zip" if zip_output else None,

0 commit comments

Comments
 (0)