Skip to content

Commit a406ddd

Browse files
committed
Fix formatting in basic.ipynb by removing unnecessary blank line in main function
1 parent 5d0e8e2 commit a406ddd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/basic.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
" async with Client() as client:\n",
118118
" audio_query = await client.create_audio_query(\"こんにちは!\", speaker=1)\n",
119119
" result = await audio_query.synthesis(speaker=1)\n",
120-
" \n",
120+
"\n",
121121
" # change result bytes stream to file-like object\n",
122122
" wav_file_bytesIO = BytesIO(result)\n",
123123
"\n",

vvclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
from .client import Client
33

44

5-
__version__ = "1.0.0a"
5+
__version__ = "1.1.0"
66
__all__ = ["Client"]

0 commit comments

Comments
 (0)