Skip to content

Commit

Permalink
Fix: コメント形式
Browse files Browse the repository at this point in the history
  • Loading branch information
tarepan committed Dec 9, 2023
1 parent 0dab404 commit aecbb40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions voicevox_engine/preset/PresetManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class PresetManager:
"""
プリセットの管理
プリセットはAudioQuery全体特徴量(話速・音高・抑揚・音量・無音長)のデフォルト値セットである。
プリセットはAudioQuery全体パラメータ(話速・音高・抑揚・音量・無音長)のデフォルト値セットである。
YAMLファイルをSSoTとする簡易データベース方式により、プリセットの管理をおこなう。
"""

Expand Down Expand Up @@ -55,7 +55,7 @@ def load_presets(self) -> list[Preset]:
except ValidationError:
raise PresetError("プリセットの設定ファイルにミスがあります")

# Validation: 全idは一意
# 全idの一意性をバリデーション
if len([preset.id for preset in _presets]) != len(
{preset.id for preset in _presets}
):
Expand Down

0 comments on commit aecbb40

Please sign in to comment.