Skip to content

Commit

Permalink
Fix: フォーマットエラーを修正
Browse files Browse the repository at this point in the history
black が 2025 年版に変わって微妙に挙動が変わったらしい
  • Loading branch information
tsukumijima committed Feb 27, 2025
1 parent 7365043 commit b2173b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/engine_manifest_assets/dependency_licenses.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions voicevox_engine/app/routers/aivm_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def install_aivm(
response_description="指定された音声合成モデルの情報",
)
def get_aivm_info(
aivm_uuid: Annotated[str, Path(description="音声合成モデルの UUID")]
aivm_uuid: Annotated[str, Path(description="音声合成モデルの UUID")],
) -> AivmInfo:
"""
指定された音声合成モデルの情報を取得します。
Expand Down Expand Up @@ -152,7 +152,7 @@ def update_aivm(
summary="指定された音声合成モデルをアンインストールする",
)
def uninstall_aivm(
aivm_uuid: Annotated[str, Path(description="音声合成モデルの UUID")]
aivm_uuid: Annotated[str, Path(description="音声合成モデルの UUID")],
) -> None:
"""
指定された音声合成モデルをアンインストールします。
Expand Down

0 comments on commit b2173b2

Please sign in to comment.