Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit a3c3ef2

Browse files
minor fix
1 parent 66d739b commit a3c3ef2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ryd_numerov/angular/angular_ket.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ def calc_reduced_overlap(self, other: AngularKetBase) -> float:
364364
ov: float = 0
365365
for coeff, jj_ket in fj.to_state("JJ"):
366366
ov += coeff * ls.calc_reduced_overlap(jj_ket)
367-
return ov
367+
return float(ov)
368368

369369
raise NotImplementedError(f"This method is not yet implemented for {self!r} and {other!r}.")
370370

0 commit comments

Comments
 (0)