Skip to content

Commit

Permalink
Merge pull request #35 from maamokun/translations-2
Browse files Browse the repository at this point in the history
  • Loading branch information
tuna2134 authored May 19, 2023
2 parents 76e583f + 00839d3 commit f3f3892
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions voicevox/audio_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ class Mora:
Attributes
----------
text: str
文字
Text to synthesize
consonant: str
子音の音素
Start of consonants
consonant_length: int
子音の音長
Pronounciation length of consonants
vowel: str
母音の音素
Start of vowels
vowel_length: int
母音の音長
Length of vowels
pitch: int
ピッチ
ピッチ //Pitch of the voice
"""

def __init__(self, payload: MoraType):
Expand Down

1 comment on commit f3f3892

@tuna2134
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 このメッセージはAutoCodeReviewによって行われたコードレビューです 🤖

💬💻 コードの解説:

  • class Mora: 音素クラス
  • クラス内には Text to synthesize, Start of consonants, Pronounciation length of consonants, Start of vowels, Length of vowels and Pitch of the voice の6つの属性がある

💬💻 コードの改善点:

  • コメントが追加された (日本語で)
  • コードはPEP8に準拠している
  • いくつかの変数がわかりやすくリネームされた

Please sign in to comment.