Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed sample and test import #62

Merged
merged 16 commits into from
Apr 14, 2024
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Example

.. code:: python

from voicevox import Client
from vvclient import Client
import asyncio


Expand Down
2 changes: 1 addition & 1 deletion examples/basic.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from voicevox import Client
from vvclient import Client
import asyncio


Expand Down
2 changes: 1 addition & 1 deletion examples/get_speakers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from voicevox import Client
from vvclient import Client
import asyncio


Expand Down
2 changes: 1 addition & 1 deletion examples/multi_synthesis.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from voicevox import Client
from vvclient import Client
import asyncio


Expand Down
2 changes: 1 addition & 1 deletion tests/test_basic.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

from voicevox import Client
from vvclient import Client


@pytest.mark.asyncio
Expand Down
2 changes: 1 addition & 1 deletion tests/test_fetch_version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

from voicevox import Client
from vvclient import Client


@pytest.mark.asyncio
Expand Down
2 changes: 1 addition & 1 deletion tests/test_init.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

from voicevox import Client
from vvclient import Client


@pytest.mark.asyncio
Expand Down
Loading