Skip to content

Commit a532f80

Browse files
committed
Fixed a syntax error
1 parent 01e0ab3 commit a532f80

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/SchaMinimizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1248,7 +1248,7 @@ def finalize(self, verbose = 1):
12481248
err /= np.sqrt(qe_sym.QE_nsym)
12491249

12501250
for i in range(self.dyn.structure.N_atoms):
1251-
print("{:4d}) {:14.6f}{:14.6f}{:14.6f} +- {:14.6f}{:14.6f}{:14.6f}".format(*list([i] + list(forces[i, :] * CC.Units.RY_TO_EV) + list(err[i,:] * CC.Units.RY_TO_EV)))
1251+
print("{:4d}) {:14.6f}{:14.6f}{:14.6f} +- {:14.6f}{:14.6f}{:14.6f}".format(*list([i] + list(forces[i, :] * CC.Units.RY_TO_EV) + list(err[i,:] * CC.Units.RY_TO_EV))))
12521252
print()
12531253

12541254
if self.ensemble.has_stress and verbose >= 1:

0 commit comments

Comments
 (0)