Skip to content

Commit

Permalink
set empty dict as default
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Nov 13, 2023
1 parent 23892bb commit 4fb6cc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions atomistics/calculators/lammps.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def evaluate_with_lammps_library(
tasks: list[TaskName],
potential_dataframe: DataFrame,
lmp: LammpsASELibrary,
lmp_optimizer_kwargs: dict = None,
lmp_optimizer_kwargs: dict ,
):
results = {}
if "optimize_positions_and_volume" in tasks:
Expand Down Expand Up @@ -118,7 +118,7 @@ def evaluate_with_lammps(
log_file=None,
library=None,
diable_log_file=True,
lmp_optimizer_kwargs=None,
lmp_optimizer_kwargs={},
):
lmp = LammpsASELibrary(
working_directory=working_directory,
Expand Down

0 comments on commit 4fb6cc7

Please sign in to comment.