Skip to content

Commit e8dd10e

Browse files
author
Shyue Ping Ong
committed
Ruff fix.
1 parent 39f15d5 commit e8dd10e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymatgen/analysis/tests/test_quasiharmonic_debye_approx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def setUp(self):
107107
def test_bulk_modulus(self):
108108
eos = EOS(self.eos)
109109
eos_fit = eos.fit(self.volumes, self.energies)
110-
print(f"{str(eos_fit.b0_GPa)=}")
110+
print(f"{eos_fit.b0_GPa=!s}")
111111
bulk_modulus = float(str(eos_fit.b0_GPa).split()[0])
112112
bulk_modulus_ans = float(str(self.qhda.bulk_modulus).split()[0])
113113
np.testing.assert_almost_equal(bulk_modulus, bulk_modulus_ans, 3)

0 commit comments

Comments
 (0)