Skip to content

Commit

Permalink
Fix check on the value of taut, taup
Browse files Browse the repository at this point in the history
  • Loading branch information
gmatteo committed Aug 9, 2024
1 parent 8d201d1 commit c348e26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions abipy/ml/aseml.py
Original file line number Diff line number Diff line change
Expand Up @@ -3050,9 +3050,9 @@ def __init__(
"""
self.atoms = atoms

if taut is none:
if taut is None:
taut = 100 * timestep * units.fs
if taup is none:
if taup is None:
taup = 1000 * timestep * units.fs

if compressibility_au is None:
Expand Down

0 comments on commit c348e26

Please sign in to comment.