Skip to content

Commit

Permalink
Format black
Browse files Browse the repository at this point in the history
  • Loading branch information
pyiron-runner committed Feb 22, 2022
1 parent 9309f71 commit 6de5241
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyiron_atomistics/vasp/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2075,9 +2075,9 @@ def collect(self, directory=os.getcwd(), sorted_indices=None):
if vasprun_working:
log_dict["forces"] = self.vp_new.vasprun_dict["forces"]
log_dict["cells"] = self.vp_new.vasprun_dict["cells"]
log_dict["volume"] = np.array([
np.linalg.det(cell) for cell in self.vp_new.vasprun_dict["cells"]
])
log_dict["volume"] = np.array(
[np.linalg.det(cell) for cell in self.vp_new.vasprun_dict["cells"]]
)
# log_dict["total_energies"] = self.vp_new.vasprun_dict["total_energies"]
log_dict["energy_tot"] = self.vp_new.vasprun_dict["total_energies"]
if "kinetic_energies" in self.vp_new.vasprun_dict.keys():
Expand Down

0 comments on commit 6de5241

Please sign in to comment.