1
0
mirror of https://github.com/fumiama/Retrieval-based-Voice-Conversion-WebUI.git synced 2026-06-07 10:10:23 +08:00

fix(backwardscomp): fix the rest of np.ndarray type subscriptions (#57)

forgot about these ones, my bad
This commit is contained in:
Alex Murkoff
2024-06-14 23:40:59 +07:00
committed by GitHub
parent c7779116c5
commit 4260b1e47f
6 changed files with 6 additions and 6 deletions

View File

@@ -12,7 +12,7 @@ class PM(F0Predictor):
def compute_f0(
self,
wav: np.ndarray[Any, np.dtype],
wav: np.ndarray,
p_len: Optional[int] = None,
filter_radius: Optional[int] = None,
):