Skip to content

Commit fec45ff

Browse files
committed
fix: remove extraneous f-string prefix
1 parent d546346 commit fec45ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

irrepx/_constants/_compute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def compute_sht_coeffs(lmax: int) -> list[tuple[np.ndarray, list[tuple[int, int,
258258
if ell == 0:
259259
T = np.ones((1, 1), dtype=np.float64) / np.sqrt(4.0 * np.pi)
260260
out.append((T, cart))
261-
print(f" SHT l= 0: max_err=0.00e+00 (exact)")
261+
print(" SHT l= 0: max_err=0.00e+00 (exact)")
262262
continue
263263

264264
# Sample points on the UNIT sphere (r=1). This bounds every

0 commit comments

Comments
 (0)