Skip to content

Commit

Permalink
Merge pull request #269 from pyiron/lammpsphono
Browse files Browse the repository at this point in the history
Fix dependence on phonolammps
  • Loading branch information
jan-janssen authored May 31, 2024
2 parents 53dc253 + 40e99b3 commit e1de9ba
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions atomistics/calculators/lammps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,15 @@
from atomistics.calculators.lammps.phonon import (
calc_molecular_dynamics_phonons_with_lammps,
)

__all__ = [
calc_molecular_dynamics_phonons_with_lammps,
]
except ImportError:
pass
__all__ = []


__all__ = [
__all__ += [
calc_molecular_dynamics_thermal_expansion_with_lammps,
calc_molecular_dynamics_nph_with_lammps,
calc_molecular_dynamics_npt_with_lammps,
Expand All @@ -36,5 +40,4 @@
optimize_positions_with_lammps,
get_potential_dataframe,
get_potential_by_name,
calc_molecular_dynamics_phonons_with_lammps,
]

0 comments on commit e1de9ba

Please sign in to comment.