Skip to content

Commit

Permalink
style: ✏️ Removed digits in diagram export (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anselmoo authored Mar 16, 2023
1 parent 817a715 commit 4f1c8de
Show file tree
Hide file tree
Showing 29 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tanabesugano/cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ def __init__(
{"Energy": energy, "delta_B": energy / self.B, "10Dq": energy * 10.0}
)
self.title_TS = (
f"TS-diagram_d{self.d_count}_10Dq_{self.Dq * 10.0}_"
f"B_{self.B}_C_{self.C}"
f"TS-diagram_d{self.d_count}_10Dq_{int(self.Dq * 10.0)}_"
f"B_{int(self.B)}_C_{int(self.C)}"
)
self.title_DD = (
f"DD-energies_d{self.d_count}_10Dq_{self.Dq * 10.0}_"
f"B_{self.B}_C_{self.C}"
f"DD-energies_d{self.d_count}_10Dq_{int(self.Dq * 10.0)}_"
f"B_{int(self.B)}_C_{int(self.C)}"
)

def plot(self) -> None:
Expand Down

0 comments on commit 4f1c8de

Please sign in to comment.