Skip to content

Commit

Permalink
FIX: プロパティ名のミスを修正 (#922)
Browse files Browse the repository at this point in the history
  • Loading branch information
sabonerune authored Dec 22, 2023
1 parent 68a439d commit 0cf2427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion voicevox_engine/metas/MetasStore.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def load_combined_metas(self, engine: "TTSEngineBase") -> List[Speaker]:
# エンジンに含まれる話者メタ情報との統合
return [
Speaker(
**self.self._loaded_metas[speaker_meta.speaker_uuid].dict(),
**self._loaded_metas[speaker_meta.speaker_uuid].dict(),
**speaker_meta.dict(),
)
for speaker_meta in core_metas
Expand Down

0 comments on commit 0cf2427

Please sign in to comment.