Skip to content

Commit

Permalink
FIX: PytestCollectionWarningを解消する
Browse files Browse the repository at this point in the history
  • Loading branch information
sabonerune committed Jun 26, 2024
1 parent 90123ba commit d04fb06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/user_dict/test_user_dict_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from voicevox_engine.user_dict.model import UserDictWord


class TestModel(TypedDict):
class _TestModel(TypedDict):
surface: str
priority: int
part_of_speech: str
Expand All @@ -24,7 +24,7 @@ class TestModel(TypedDict):
accent_associative_rule: str


def generate_model() -> TestModel:
def generate_model() -> _TestModel:
return {
"surface": "テスト",
"priority": 0,
Expand Down

0 comments on commit d04fb06

Please sign in to comment.