Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mcgalcode committed Jul 21, 2023
1 parent 5fb478d commit 9efae7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mpmorph/flows/fast_quench.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
def get_original_relax_flow(struct: Structure):
relax_input_generator = RelaxSetGenerator(
user_incar_settings=relax_settings,
user_kpoints_settings=Kpoints.monkhorst_automatic(2, 2, 2)
user_kpoints_settings=Kpoints.monkhorst_automatic()
)

relax_maker = RelaxMaker(input_set_generator=relax_input_generator, name="Original Structure Relaxation")
Expand All @@ -43,7 +43,7 @@ def get_original_relax_flow(struct: Structure):
def get_fast_quench_flow(struct: Structure):
relax_input_generator = RelaxSetGenerator(
user_incar_settings=relax_settings,
user_kpoints_settings=Kpoints.monkhorst_automatic(2, 2, 2)
user_kpoints_settings=Kpoints.monkhorst_automatic()
)

relax_maker_1 = RelaxMaker(input_set_generator=relax_input_generator)
Expand Down

0 comments on commit 9efae7c

Please sign in to comment.